cryptgeon/packages/cli/package.json

37 lines
938 B
JSON
Raw Normal View History

2023-04-26 16:06:09 +00:00
{
2023-05-12 16:55:27 +00:00
"version": "2.3.0-beta.2",
"name": "cryptgeon",
2023-04-26 16:06:09 +00:00
"type": "module",
2023-05-12 16:55:27 +00:00
"engines": {
"node": ">=18"
},
2023-04-26 16:06:09 +00:00
"scripts": {
"dev": "esbuild ./src/index.ts --bundle --platform=node --outfile=dist/index.cjs --watch",
2023-05-12 16:55:27 +00:00
"build": "rm -rf ./dist && tsc && esbuild ./src/index.ts --bundle --platform=node --outfile=dist/index.cjs",
"package": "node ./build.js",
"bin": "run-s build package",
"prepublishOnly": "run-s build"
2023-04-26 16:06:09 +00:00
},
"bin": {
"cryptgeon": "./dist/index.cjs"
},
"files": [
"dist"
],
"devDependencies": {
2023-05-12 16:55:27 +00:00
"@commander-js/extra-typings": "^9.5.0",
"@cryptgeon/shared": "workspace:*",
2023-04-26 16:06:09 +00:00
"@types/inquirer": "^9.0.3",
"@types/mime": "^3.0.1",
2023-04-27 17:01:32 +00:00
"@types/node": "^18.16.1",
2023-04-26 16:06:09 +00:00
"commander": "^9.5.0",
2023-05-12 16:55:27 +00:00
"esbuild": "^0.17.18",
2023-04-26 16:06:09 +00:00
"inquirer": "^9.2.0",
"mime": "^3.0.0",
"occulto": "^2.0.1",
2023-05-12 16:55:27 +00:00
"pkg": "^5.8.1",
"pretty-bytes": "^6.1.0",
"typescript": "^4.9.5"
2023-04-26 16:06:09 +00:00
}
}