-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
138 lines (138 loc) · 4.21 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "disco",
"description": "deploy and manage your web projects",
"version": "0.5.32",
"author": "The disco Team",
"bin": {
"disco": "./bin/run.js"
},
"bugs": "https://github.com/letsdiscodev/cli/issues",
"dependencies": {
"@inquirer/input": "^2.1.6",
"@inquirer/password": "^2.1.6",
"@inquirer/select": "^2.3.2",
"@oclif/core": "^4",
"@oclif/plugin-autocomplete": "^3.1.2",
"@oclif/plugin-help": "^6",
"@oclif/plugin-plugins": "^5",
"@oclif/plugin-update": "^4",
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"eventsource": "^2.0.2",
"node-fetch": "^3.3.2",
"node-ssh": "^13.2.0",
"open": "^10.1.0",
"tunnel-ssh": "^5.1.2"
},
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^3",
"@types/chai": "^4",
"@types/eventsource": "^1.1.15",
"@types/mocha": "^10",
"@types/node": "^18",
"@types/ssh2": "^1.15.0",
"chai": "^4",
"eslint": "^8",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^9",
"mocha": "^10",
"oclif": "^4",
"shx": "^0.3.3",
"ts-node": "^10",
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"homepage": "https://github.com/letsdiscodev/cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"oclif": {
"bin": "disco",
"dirname": "disco",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help",
"@oclif/plugin-plugins",
"@oclif/plugin-update"
],
"topicSeparator": ":",
"topics": {
"apikeys": {
"description": "list and remove api keys"
},
"deploy": {
"description": "manage deployments and see deployment output"
},
"discos": {
"description": "manage discos"
},
"env": {
"description": "read, set and remove environment variables"
},
"github": {
"description": "manage your github apps"
},
"invite": {
"description": "create and accept invites to manage a server"
},
"meta": {
"description": "get and set meta information"
},
"postgres": {
"description": "manage postgres databases"
},
"postgres:addon": {
"description": "manage postgres addons"
},
"postgres:databases": {
"description": "manage postgres databases"
},
"postgres:instances": {
"description": "manage postgres instances"
},
"projects": {
"description": "add, list, move and remove projects"
},
"syslog": {
"description": "add, list and remove log destinations"
},
"volumes": {
"description": "list, import and export volume data"
}
},
"macos": {
"identifier": "dev.letsdisco.cli"
},
"update": {
"disableNpmLookup": true,
"s3": {
"bucket": "disco-cli-assets",
"host": "https://cli-assets.letsdisco.dev/"
}
}
},
"repository": "letsdiscodev/cli",
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "oclif manifest",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"readme": "oclif readme --repository-prefix \"<%- repo %>/blob/main/<%- commandPath %>\" --readme-path ../docs.letsdisco.dev/docs/disco-cli-reference.md"
},
"types": "dist/index.d.ts"
}