mirror of
https://github.com/pockethost/pockethost.git
synced 2026-02-26 05:00:12 +00:00
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"name": "pockethost",
|
|
"version": "0.0.5",
|
|
"main": "./dist/index.js",
|
|
"bin": {
|
|
"pbscript": "./dist/pbscript"
|
|
},
|
|
"author": {
|
|
"name": "Ben Allfree",
|
|
"url": "https://github.com/benallfree"
|
|
},
|
|
"repository": {
|
|
"url": "https://github.com/benallfree/pockethost"
|
|
},
|
|
"scripts": {
|
|
"dev": "chokidar package.json 'src/**' './node_modules/**' -c 'yarn build' --initial",
|
|
"build": "parcel build --no-cache && yarn build:shebang && npm i -g --force .",
|
|
"build:shebang": "echo \"#!/usr/bin/env node\"|cat - ./dist/index.js > ./dist/pbscript",
|
|
"publish": "npm publish --access public"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"parcel": "^2.7.0"
|
|
},
|
|
"dependencies": {
|
|
"@types/eventsource": "^1.1.9",
|
|
"@types/node": "^18.8.2",
|
|
"@types/prompts": "^2.4.1",
|
|
"@types/tmp": "^0.2.3",
|
|
"commander": "^9.4.0",
|
|
"cross-fetch": "^3.1.5",
|
|
"eventsource": "^2.0.2",
|
|
"find-up": "^6.3.0",
|
|
"pocketbase": "^0.8.0",
|
|
"prompts": "^2.4.2",
|
|
"tmp": "^0.2.1"
|
|
},
|
|
"targets": {
|
|
"node": {
|
|
"engines": {
|
|
"node": ">= 12"
|
|
},
|
|
"source": "./src/index.ts",
|
|
"context": "node",
|
|
"outputFormat": "commonjs",
|
|
"includeNodeModules": [
|
|
"@s-libs/micro-dash",
|
|
"find-up",
|
|
"locate-path",
|
|
"path-exists",
|
|
"p-locate",
|
|
"p-limit",
|
|
"yocto-queue",
|
|
"pocketbase"
|
|
]
|
|
}
|
|
}
|
|
} |