82 lines
1.9 KiB
JSON
82 lines
1.9 KiB
JSON
{
|
|
"name": "pipenet",
|
|
"description": "Expose your local server to the public internet instantly",
|
|
"version": "1.4.0",
|
|
"type": "module",
|
|
"main": "./dist/pipenet.js",
|
|
"types": "./dist/pipenet.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/pipenet.d.ts",
|
|
"import": "./dist/pipenet.js"
|
|
},
|
|
"./server": {
|
|
"types": "./dist/server/index.d.ts",
|
|
"import": "./dist/server/index.js"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/punkpeye/pipenet.git"
|
|
},
|
|
"author": "Frank Fiegel <frank@glama.ai>",
|
|
"bin": {
|
|
"pipenet": "./dist/cli.js"
|
|
},
|
|
"release": {
|
|
"branches": [
|
|
"main"
|
|
],
|
|
"plugins": [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
"@semantic-release/npm",
|
|
"@semantic-release/github"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"lint": "eslint . && knip",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"start:server": "node dist/server/index.js"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.7.3",
|
|
"debug": "^4.3.6",
|
|
"human-readable-ids": "^1.0.4",
|
|
"koa": "^3.1.1",
|
|
"koa-router": "^14.0.0",
|
|
"pump": "^3.0.3",
|
|
"tldjs": "^2.3.2",
|
|
"yargs": "^18.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=22.0.0"
|
|
},
|
|
"packageManager": "pnpm@10.28.0",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.2",
|
|
"@types/debug": "^4.1.12",
|
|
"@types/koa": "^3.0.1",
|
|
"@types/koa-router": "^7.4.9",
|
|
"@types/node": "^25.0.9",
|
|
"@types/pump": "^1.1.3",
|
|
"@types/supertest": "^6.0.3",
|
|
"@types/tldjs": "^2.3.4",
|
|
"@types/ws": "^8.18.1",
|
|
"@types/yargs": "^17.0.35",
|
|
"eslint": "^9.39.2",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-perfectionist": "^5.3.1",
|
|
"jiti": "^2.6.1",
|
|
"knip": "^5.82.0",
|
|
"semantic-release": "^25.0.2",
|
|
"supertest": "^7.2.2",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.53.0",
|
|
"vitest": "^4.0.17",
|
|
"ws": "^8.19.0"
|
|
}
|
|
}
|