-
Notifications
You must be signed in to change notification settings - Fork 248
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.45 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.45 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
{
"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": "bun run prepare:quickjs-wasm && vite dev --host 0.0.0.0 --port 3000",
"build": "bun run prepare:quickjs-wasm && vite build",
"preview": "bun run prepare:quickjs-wasm && vite preview --host 0.0.0.0 --port 3000",
"fetch:substore": "bash scripts/fetch-substore.sh",
"install:backend": "cd sub-store/backend && bun install --ignore-scripts",
"deploy:local": "bun run prepare:quickjs-wasm && npx wrangler deploy",
"deploy:action": "set -o pipefail && bun 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",
"@vitejs/plugin-react": "^5.1.2",
"vite": "^7.3.0",
"wrangler": "^4.61.0"
},
"dependencies": {
"@cloudflare/actors": "0.0.1-beta.6",
"@marsidev/react-turnstile": "^1.4.0",
"@jitl/quickjs-wasmfile-release-sync": "^0.31.0",
"buffer": "^6.0.3",
"jose": "^6.1.3",
"mmdb-lib": "^3.0.1",
"quickjs-emscripten": "^0.31.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router-dom": "^7.11.0"
}
}