cryptgeon/packages/cli/package.json

48 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "cryptgeon",
2024-09-02 10:27:26 +02:00
"version": "2.7.1",
"homepage": "https://github.com/cupcakearmy/cryptgeon",
2023-05-26 01:10:22 +02:00
"repository": {
"type": "git",
"url": "https://github.com/cupcakearmy/cryptgeon.git",
"directory": "packages/cli"
},
"type": "module",
"exports": {
2024-09-02 10:19:35 +02:00
".": "./dist/index.js",
"./shared": {
"import": "./dist/shared/shared.js",
"types": "./dist/shared/shared.d.ts"
}
},
"types": "./dist/index.d.ts",
"bin": {
"cryptgeon": "./dist/cli.cjs"
},
"files": [
"dist"
],
"scripts": {
"bin": "run-s build package",
2024-08-23 09:59:06 +02:00
"build": "tsc && node build.js",
"dev": "node build.js --watch",
"prepublishOnly": "run-s build"
},
"devDependencies": {
2024-09-02 10:19:35 +02:00
"@commander-js/extra-typings": "^12.1.0",
2024-03-03 01:50:52 +01:00
"@types/inquirer": "^9.0.7",
2024-09-02 10:19:35 +02:00
"@types/mime": "^4.0.0",
2024-03-03 01:50:52 +01:00
"@types/node": "^20.11.24",
2024-09-02 10:19:35 +02:00
"commander": "^12.1.0",
2024-03-03 01:50:52 +01:00
"inquirer": "^9.2.15",
"mime": "^4.0.1",
2024-09-02 10:19:35 +02:00
"occulto": "^2.0.6",
2023-08-14 10:22:09 +02:00
"pretty-bytes": "^6.1.1",
2024-08-22 20:21:05 +02:00
"tsup": "^8.2.4",
2024-03-03 01:50:52 +01:00
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}