prodia-scripts/package.json

30 lines
647 B
JSON
Raw Normal View History

2024-10-25 13:34:26 +08:00
{
"name": "prodia-scripts",
"version": "1.0.0",
"description": "prodia cli",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "esbuild src/index.ts --bundle --outfile=index.js --platform=node"
},
2024-10-25 13:48:42 +08:00
"bin":{
"prodia": "./index.js"
},
2024-10-25 13:34:26 +08:00
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.7.9",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"esbuild": "^0.24.0",
"node-fetch": "^3.3.2",
"typescript": "^5.6.3"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true
}
}