-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 979 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 979 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
{
"name": "cloudflare-maintenance-page-cli",
"version": "0.1.10",
"description": "Simple CLI using Cloudflare API and Workers to deploy a maintenance page to a domain",
"keywords": [
"cloudflare",
"maintenance-page",
"cloudflare-workers",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/axeelz/cloudflare-maintenance-page-cli"
},
"module": "src/index.ts",
"type": "module",
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@types/bun": "1.3.5"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@effect/cli": "^0.73.0",
"@effect/platform-bun": "^0.87.0",
"cloudflare": "^5.2.0",
"eta": "^4.5.0",
"open": "^11.0.0"
},
"scripts": {
"dev": "bun run dev/server.ts",
"start": "bun run src/index.ts",
"lint": "biome check",
"lint:fix": "biome check --write",
"build": "bun run build.ts"
},
"bin": {
"cfmp": "./src/index.ts"
}
}