-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.14 KB
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
{
"name": "cfman",
"version": "0.4.0",
"description": "A beautiful CLI tool to manage multiple Cloudflare accounts and deploy Workers with ease",
"main": "./dist/index.js",
"bin": {
"cfman": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"prepare": "npm run build",
"release": "bash scripts/release.sh"
},
"keywords": [
"cloudflare",
"workers",
"cli",
"deployment",
"wrangler",
"multi-account"
],
"author": "Shayan Moradi <shayan@novincode.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/novincode/cfman.git"
},
"bugs": {
"url": "https://github.com/novincode/cfman/issues"
},
"homepage": "https://github.com/novincode/cfman#readme",
"packageManager": "pnpm@10.7.1",
"dependencies": {
"chalk": "^5.4.1",
"commander": "^14.0.0",
"execa": "^9.6.0",
"inquirer": "^12.7.0",
"ora": "^8.2.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.8",
"@types/node": "^24.0.10",
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}