-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 4.06 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 4.06 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "freesocks-control-plane",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "FreeSocks Control Plane - self-hosted Convex backend + Svelte SPA, account-number member auth",
"license": "AGPL-3.0-or-later",
"homepage": "https://freesocks.org",
"repository": {
"type": "git",
"url": "git+https://github.com/unredacted/freesocks-control-plane.git"
},
"bugs": {
"url": "https://github.com/unredacted/freesocks-control-plane/issues"
},
"packageManager": "bun@1.4.2",
"scripts": {
"dev": "bun run i18n:keys && concurrently -k -n convex,vite \"convex dev\" \"vite\"",
"dev:web": "bun run i18n:keys && vite",
"build": "bun run i18n:compile && tsc -b && vite build",
"preview": "vite preview",
"convex:dev": "convex dev",
"convex:deploy": "convex deploy",
"convex:codegen": "convex codegen",
"test": "bun run i18n:compile && vitest run",
"test:watch": "bun run i18n:compile && vitest",
"test:integration:remnawave": "bash scripts/remnawave-integration.sh",
"test:integration:cap": "vitest run --config vitest.integration.config.ts convex/lib/captcha.integration.test.ts",
"selfhost:up": "docker compose --env-file .env.docker up -d",
"selfhost:down": "docker compose --env-file .env.docker down",
"selfhost:admin-key": "docker compose --env-file .env.docker exec backend ./generate_admin_key.sh",
"selfhost:env": "bash scripts/selfhost-env.sh",
"bootstrap": "bun install --frozen-lockfile && bun scripts/bootstrap-secrets.mjs",
"lint": "eslint . && prettier --check .",
"format": "prettier --write .",
"typecheck": "bun run i18n:compile && tsc -b --noEmit && tsc -p convex/tsconfig.json --noEmit && svelte-check --workspace . --threshold error",
"i18n:keys": "bun run scripts/i18n-keys.ts",
"i18n:compile": "bun run i18n:keys && paraglide-js compile --project ./project.inlang --outdir ./src/lib/paraglide",
"i18n:review": "bun run scripts/i18n-review-packet.ts",
"verifier:pin": "bun scripts/gen-verifier-pin.mjs",
"test:compat": "bun --no-env-file scripts/compat/run.ts",
"test:compat:browser": "playwright test --config tests/compat/playwright.config.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1063.0",
"@cap.js/wasm": "0.0.7",
"@cap.js/widget": "^0.1.56",
"@fontsource/inter": "^5.2.8",
"@fontsource/inter-tight": "^5.2.7",
"@fontsource/jetbrains-mono": "^5.2.8",
"@hpke/chacha20poly1305": "^1.8.0",
"@hpke/core": "^1.7.5",
"@hpke/hybridkem-x-wing": "^0.7.0",
"@noble/curves": "^2.2.0",
"@noble/post-quantum": "^0.6.1",
"@scaleway/sdk-client": "2.7.0",
"@scaleway/sdk-lb": "2.13.1",
"@simplewebauthn/browser": "^13.3.0",
"@simplewebauthn/server": "^13.3.1",
"@tanstack/svelte-query": "^6.1.34",
"@tanstack/svelte-query-devtools": "^6.1.34",
"clsx": "^2.1.1",
"cobe": "^2.0.1",
"convex": "^1.45.0",
"globalping": "0.4.0",
"layerchart": "^2.3.0",
"pako": "2.1.0",
"qrcode": "^1.5.4",
"tailwind-merge": "^3.6.0",
"yaml": "2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@edge-runtime/vm": "^5.0.0",
"@inlang/paraglide-js": "2.20.0",
"@inlang/plugin-m-function-matcher": "2.2.6",
"@inlang/plugin-message-format": "4.4.0",
"@internationalized/date": "^3.12.2",
"@lucide/svelte": "^1.17.0",
"@playwright/test": "1.58.2",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^25.9.2",
"@types/qrcode": "^1.5.6",
"bits-ui": "^2.18.1",
"bun-types": "^1.3.14",
"concurrently": "^10.0.3",
"convex-test": "^0.0.53",
"eslint": "^10.4.1",
"mode-watcher": "^1.1.0",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^4.1.0",
"runed": "^0.37.1",
"svelte": "^5.56.2",
"svelte-check": "^4.6.0",
"svelte-sonner": "^1.1.1",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.3.0",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"engines": {
"bun": ">=1.3.0",
"node": ">=22.22.2"
}
}