-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 916 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 916 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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "cloud-cli",
"version": "0.0.1",
"description": "Deploy any container to Cloudflare with one command",
"main": "index.js",
"bin": {
"cloud": "./index.js"
},
"scripts": {
"start": "node index.js",
"dev": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cloudflare",
"containers",
"docker",
"deploy",
"serverless",
"workers",
"cli"
],
"author": "ygwyg",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ygwyg/cloud-cli.git"
},
"bugs": {
"url": "https://github.com/ygwyg/cloud-cli/issues"
},
"homepage": "https://github.com/ygwyg/cloud-cli#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.0.0",
"fs-extra": "^11.2.0",
"inquirer": "^8.2.6",
"jsonc-parser": "^3.3.1"
}
}