-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.69 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
{
"name": "lnvps_web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "bun server/dev.ts",
"build": "bun run build:client && bun run build:server && bun run locale:compile && bun run skill:index",
"skill:index": "bun server/gen-skill-index.ts",
"build:client": "bunx vite build --mode ${MODE:-production} --outDir dist/client",
"build:server": "bunx vite build --mode ${MODE:-production} --ssr src/entry-server.tsx --outDir dist/server",
"serve": "bun run build && bun server/prod.ts",
"lint": "eslint .",
"preview": "bunx vite preview",
"locale:extract": "bunx formatjs extract 'src/**/*.tsx' 'src/**/*.ts' '!src/vite-env.d.ts' --out-file src/locales/en.json",
"locale:compile": "mkdir -p dist/client/locales && bunx formatjs compile-folder src/locales dist/client/locales",
"locale:translate": "bun run locale:extract && bun run locale:compile && ollama_intl -u ${OLLAMA_URL:-http://localhost:11434/v1} -i src/locales/en.json -o src/locales -t German:de -t Spanish:es -t French:fr -t Portuguese:pt -t Japanese:ja -t Chinese:zh -t Russian:ru -t Arabic:ar -t Turkish:tr -t Korean:ko"
},
"dependencies": {
"@formatjs/cli": "^6.13.0",
"@marsidev/react-turnstile": "^1.4.1",
"@revolut/checkout": "^1.1.24",
"@scure/base": "^1.2.1",
"@simplewebauthn/browser": "^13.3.0",
"@snort/shared": "^2.0.0-pre.3",
"@snort/system": "^2.0.0-pre.9",
"@snort/system-react": "^2.0.0-pre.12",
"@xterm/addon-attach": "^0.11.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"classnames": "^2.5.1",
"dns-over-http-resolver": "^3.0.16",
"iso-3166-1": "^2.1.1",
"marked": "^15.0.7",
"qr-code-styling": "^1.8.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-intl": "^8.1.3",
"react-router-dom": "^7.13.1",
"recharts": "^2.15.1",
"simple-icons": "^16.27.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@tailwindcss/vite": "^4.1.18",
"@types/bun": "^1.3.10",
"@types/compression": "^1.8.1",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^5.1.2",
"babel-plugin-formatjs": "^11.2.4",
"eslint": "^9.8.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"tailwindcss": "^4.1.18",
"typescript": "~5.7.3",
"typescript-eslint": "^8.0.0",
"vite": "^7.3.1"
},
"overrides": {
"@babel/runtime": "^7.26.10",
"minimatch": "^9.0.7",
"glob": "^10.5.0",
"js-yaml": "^4.1.1",
"lodash": "^4.17.23",
"react": "^19.1.0",
"react-dom": "^19.1.0"
}
}