shx/packages/cli/package.json

33 lines
718 B
JSON

{
"name": "shx-cli",
"version": "1.2.0",
"description": "CLI Utility for SHX API",
"main": "build/src/shx.js",
"author": "BRAVO68WEB",
"license": "MIT",
"type": "commonjs",
"private": false,
"devDependencies": {
"@types/node": "^20.2.5",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.4.0",
"clipboardy": "2.3.0",
"commander": "^11.0.0",
"configstore": "5.0.1",
"inquirer": "^8.0.0"
},
"scripts": {
"i:g": "npm i -g .",
"u:g": "npm uninstall -g shx-cli",
"build": "tsc",
"r": "npm run u:g && npm run build && npm run i:g",
"watch": "tsc -w",
"shx": "node ./build/src/shx.js"
},
"bin": {
"shx": "./build/src/shx.js"
}
}