Files
cryptgeon/packages/cli/package.json
T
2026-07-12 11:36:01 +02:00

44 lines
967 B
JSON

{
"name": "cryptgeon",
"version": "3.0.0",
"homepage": "https://github.com/cupcakearmy/cryptgeon",
"repository": {
"type": "git",
"url": "https://github.com/cupcakearmy/cryptgeon.git",
"directory": "packages/cli"
},
"type": "module",
"exports": {
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"bin": {
"cryptgeon": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "node build.js",
"dev": "node build.js --watch",
"prepublishOnly": "run-s build"
},
"dependencies": {
"@cryptgeon/shared": "workspace:*",
"@msgpack/msgpack": "^3.1.3",
"@commander-js/extra-typings": "^12.1.0",
"inquirer": "^9.3.8",
"mime": "^4.1.0",
"pretty-bytes": "^6.1.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/node": "^22.15.3",
"commander": "^12.1.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22"
}
}