-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 773 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "teemops",
"version": "0.0.2",
"description": "Teemops CLI used for interacting with the Teemops API",
"main": "dist/index.js",
"bin": {
"teemops": "./dist/index.js"
},
"scripts": {
"build": "npx tsc",
"build-watch": "npx tsc -w",
"dev": "npx ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "node ./dist/utils/postinstall.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.2",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"conf": "^12.0.0",
"enquirer": "^2.4.1",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@types/node": "^20.9.4",
"@types/unzipper": "^0.10.11",
"typescript": "^5.3.2"
}
}