-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 KB
/
package.json
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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "discloud-cli",
"description": "A fast option to manage your apps on Discloud.",
"version": "1.18.0",
"bin": {
"discloud": "bin/discloud"
},
"scripts": {
"watch": "tsc -watch",
"build": "tsc && npm run copy-templates",
"copy-templates": "npx copyfiles -f ./src/templates/* ./build/templates",
"prepublish": "npm run build",
"test": "npm run test:ts",
"test:ts": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/discloud/cli.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/discloud/cli/issues"
},
"homepage": "https://github.com/discloud/cli#readme",
"dependencies": {
"@discloudapp/api-types": "^0.6.0",
"@discloudapp/gluegun": "^5.1.6",
"@discloudapp/util": "^0.7.0",
"archiver": "^7.0.1",
"form-data": "^4.0.0",
"glob": "^10.3.10",
"jsonwebtoken": "^9.0.2",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/archiver": "^6.0.2",
"@types/eslint": "^8.56.10",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.14.5",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
}
}