mtt/package.json
2025-02-15 23:59:33 +09:00

25 lines
460 B
JSON

{
"name": "multitool",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mt": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"@types/node": "^22.13.4",
"typescript": "^5.7.3"
},
"dependencies": {
"commander": "^13.1.0"
}
}