Files
AIDolClubBot/package.json
2025-07-16 23:14:48 +02:00

33 lines
667 B
JSON

{
"name": "typescript-cli-boilerplate",
"version": "1.0.0",
"description": "A boilerplate for a TypeScript CLI application.",
"main": "dist/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"bin": {
"my-cli": "dist/index.js"
},
"keywords": [
"typescript",
"cli",
"boilerplate"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.0.0",
"ts-node": "^10.8.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/axios": "^0.9.36",
"axios": "^1.10.0",
"dotenv": "^17.2.0",
"form-data": "^4.0.3"
}
}