forked from vipineth/hypeterminal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.17 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.17 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
{
"name": "hyperterminal",
"private": true,
"type": "module",
"packageManager": "pnpm@9.15.0",
"scripts": {
"dev": "vite dev",
"build": "lingui compile && NODE_OPTIONS=--max-old-space-size=4096 vite build && node scripts/clean-worker-statics.mjs",
"build:analyze": "ANALYZE=true lingui compile && vite build",
"serve": "vite preview",
"format": "biome format",
"lint": "biome lint",
"check": "biome check",
"fix": "biome check --write",
"test": "vitest run",
"i18n:extract": "lingui extract",
"i18n:compile": "lingui compile",
"prepare": "lefthook install",
"perf:bundle": "npx vite-bundle-visualizer",
"perf:compare": "node scripts/compare-bundle.js",
"perf:ws-soak:30m": "WS_SOAK_RUN=true WS_SOAK_DURATION_MS=1800000 WS_SOAK_SAMPLE_MS=1000 WS_SOAK_OP_MS=10 vitest run src/lib/tests/websocket-soak.test.ts",
"perf:ws-soak:60m": "WS_SOAK_RUN=true WS_SOAK_DURATION_MS=3600000 WS_SOAK_SAMPLE_MS=1000 WS_SOAK_OP_MS=10 vitest run src/lib/tests/websocket-soak.test.ts",
"clean": "rm -rf node_modules dist .output .wrangler"
},
"dependencies": {
"@fontsource-variable/ibm-plex-sans": "5.2.8",
"@lingui/core": "5.7.0",
"@lingui/react": "5.7.0",
"@marsidev/react-turnstile": "^1.4.2",
"@nktkas/hyperliquid": "0.31.0",
"@phosphor-icons/react": "2.1.10",
"@privy-io/react-auth": "^3.17.0",
"@privy-io/wagmi": "^4.0.2",
"@tanstack/react-query": "5.66.5",
"@tanstack/react-router": "1.132.0",
"@tanstack/react-start": "1.132.0",
"@tanstack/react-table": "8.21.3",
"@tanstack/react-virtual": "3.13.13",
"big.js": "7.0.1",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"cmdk": "1.1.1",
"events": "^3.3.0",
"klinecharts": "9.8.12",
"motion": "12.33.0",
"radix-ui": "1.4.3",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-resizable-panels": "4.6.0",
"recharts": "2.15.4",
"sonner": "2.0.7",
"tailwind-merge": "3.4.0",
"tailwindcss": "4.0.6",
"tw-animate-css": "1.4.0",
"vaul": "1.1.2",
"viem": "2.42.1",
"vite-plugin-node-polyfills": "^0.25.0",
"wagmi": "3.1.0",
"zod": "4.3.4",
"zustand": "5.0.9"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@lingui/babel-plugin-lingui-macro": "^5.7.0",
"@lingui/cli": "^5.7.0",
"@lingui/vite-plugin": "^5.7.0",
"@tailwindcss/vite": "^4.0.6",
"@tanstack/router-plugin": "^1.132.0",
"@types/big.js": "^6.2.2",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"babel-plugin-react-compiler": "^1.0.0",
"lefthook": "^1.11.0",
"nitro": "3.0.260311-beta",
"rollup-plugin-visualizer": "^6.0.5",
"shadcn": "^3.8.3",
"typescript": "^5.7.2",
"vite": "^7.1.7",
"vite-bundle-analyzer": "^1.3.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.16"
},
"pnpm": {
"overrides": {
"@noble/hashes": "1.8.0"
},
"patchedDependencies": {
"@tanstack/start-plugin-core@1.132.0": "patches/@tanstack__start-plugin-core@1.132.0.patch"
}
}
}