mod-manager/package.json

36 lines
851 B
JSON
Raw Normal View History

2022-08-01 13:36:20 +00:00
{
"name": "mod-manager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
2024-04-06 14:27:26 +00:00
"build": "npx tsc",
"dev": "node ./build/ts/mod-manager.js",
"debug": "npm run build && npm run dev test"
2022-08-01 13:36:20 +00:00
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/inquirer": "^9.0.0",
2024-04-06 14:27:53 +00:00
"@types/properties-parser": "^0.3.3",
2022-08-03 19:42:51 +00:00
"as-table": "^1.0.55",
2022-08-02 14:42:00 +00:00
"axios": "^0.27.2",
2022-08-01 13:36:20 +00:00
"chalk": "^5.0.1",
2022-08-02 14:42:00 +00:00
"commander": "^9.4.0",
"inquirer": "^9.1.0",
"node-downloader-helper": "^2.1.2",
2022-08-03 14:00:36 +00:00
"ora": "^6.1.2",
2022-08-03 15:52:24 +00:00
"pino": "^8.3.1",
2024-04-06 14:27:53 +00:00
"properties-parser": "^0.6.0",
"string-format": "^2.0.0",
"string-similarity-js": "^2.1.4",
"typescript-string-operations": "^1.4.1"
2022-08-01 13:36:20 +00:00
},
"devDependencies": {
2024-04-06 14:27:26 +00:00
"@types/node": "^18.19.30",
"typescript": "^4.9.5"
2022-08-01 13:36:20 +00:00
}
}