-
Notifications
You must be signed in to change notification settings - Fork 286
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.99 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
{
"name": "sub-store-workers",
"version": "1.0.0",
"description": "Sub-Store Cloudflare Workers Adapter",
"type": "module",
"scripts": {
"prepare:quickjs-wasm": "bash scripts/copy-quickjs-wasm.sh",
"dev:workers": "pnpm run prepare:quickjs-wasm && vite dev --config vite.workers.config.js --host 0.0.0.0 --port 3000",
"build:workers": "pnpm run prepare:quickjs-wasm && vite build --config vite.workers.config.js",
"preview:workers": "pnpm run prepare:quickjs-wasm && vite preview --config vite.workers.config.js --host 0.0.0.0 --port 3000",
"fetch:substore": "bash scripts/fetch-substore.sh && pnpm run install:backend",
"install:backend": "cd sub-store/backend && pnpm install --no-frozen-lockfile --ignore-scripts",
"deploy:workers:local": "pnpm run prepare:quickjs-wasm && npx wrangler deploy",
"deploy:workers:action": "bash -o pipefail -c 'pnpm run prepare:quickjs-wasm && npx wrangler deploy 2>&1 | sed -e \"/workers.dev/d\" -e \"/https:\\\\/\\\\//d\"'",
"tail": "npx wrangler tail --format=pretty"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.18.0",
"@tailwindcss/vite": "^4.3.0",
"@vitejs/plugin-react": "^5.1.2",
"fastestsmallesttextencoderdecoder": "^1.0.22",
"peggy": "^2.0.1",
"tailwindcss": "^4.3.0",
"vite": "^7.3.0",
"wrangler": "^4.61.0"
},
"dependencies": {
"@cloudflare/actors": "0.0.1-beta.6",
"@fontsource/inter": "^5.2.8",
"@jitl/quickjs-wasmfile-release-sync": "^0.31.0",
"@marsidev/react-turnstile": "^1.4.0",
"buffer": "^6.0.3",
"jose": "^6.1.3",
"mmdb-lib": "^3.0.1",
"pg": "^8.20.0",
"quickjs-emscripten": "^0.31.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router-dom": "^7.11.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"workerd"
]
}
}