Files
cryptgeon/packages/cli/package.json
T
2026-09-12 16:13:02 +02:00

43 lines
992 B
JSON

{
"name": "cryptgeon",
"version": "3.0.0-rc.2",
"homepage": "https://github.com/cupcakearmy/cryptgeon",
"repository": {
"type": "git",
"url": "https://github.com/cupcakearmy/cryptgeon.git",
"directory": "packages/cli"
},
"type": "module",
"exports": {
".": "./dist/index.mjs"
},
"types": "./dist/index.d.mts",
"bin": {
"cryptgeon": "./dist/cli.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@commander-js/extra-typings": "^15.0.0",
"@cryptgeon/shared": "workspace:*",
"@msgpack/msgpack": "^3.1.3",
"@tsconfig/strictest": "catalog:",
"@types/inquirer": "^9.0.10",
"@types/node": "^22.20.1",
"commander": "^15.0.0",
"inquirer": "^14.2.1",
"mime": "^4.1.0",
"pretty-bytes": "^7.1.3",
"typescript": "catalog:",
"vite-plus": "catalog:"
},
"engines": {
"node": ">=22"
}
}