-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 870 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "cloudflare-domain-manager",
"module": "index.ts",
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.tsx",
"start": "bun run src/index.tsx",
"build:mac": "bun build --compile --minify --target=bun-darwin-arm64 src/index.tsx --outfile dist/cf-manager-mac",
"build:win": "bun build --compile --minify --target=bun-windows-x64 src/index.tsx --outfile dist/cf-manager.exe",
"build:linux": "bun build --compile --minify --target=bun-linux-x64 src/index.tsx --outfile dist/cf-manager-linux-x64",
"build:linux-arm64": "bun build --compile --minify --target=bun-linux-arm64 src/index.tsx --outfile dist/cf-manager-linux-arm64"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@elysiajs/html": "^1.4.0",
"elysia": "^1.4.19"
}
}