-
-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.36 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.36 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
{
"name": "tb-v2",
"private": true,
"version": "2.3.0",
"type": "module",
"scripts": {
"start": "npm run build && tsx bootstrap.ts",
"start:nobuild": "tsx bootstrap.ts",
"build-apps-json": "tsx bootstrap.ts --apps-only",
"build-static": "touch .env && tsx bootstrap.ts --apps-only && vite build",
"dev": "tsx bootstrap.ts --dev && vite dev",
"build": "tsx bootstrap.ts --apps-only && vite build",
"lint": "eslint .",
"vite": "vite",
"preview": "vite preview",
"check": "biome check . --write",
"fmt": "biome format --write ."
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@hono/node-server": "^1.19.12",
"@mercuryworkshop/bare-mux": "^2.1.8",
"@mercuryworkshop/epoxy-transport": "^2.1.28",
"@mercuryworkshop/libcurl-transport": "^1.5.2",
"@mercuryworkshop/scramjet": "https://cdn.terbiumon.top/scramjet-v2.0-alpha.tgz",
"@mercuryworkshop/wisp-js": "^0.4.1",
"@paralleldrive/cuid2": "^3.3.0",
"@terbiumos/tfs": "1.0.22",
"@titaniumnetwork-dev/ultraviolet": "^3.2.10",
"@webcontainer/api": "^1.6.1",
"better-auth": "^1.5.6",
"compressorjs": "^1.2.1",
"cropperjs": "1.6.2",
"crypto-js": "^4.2.0",
"dotenv": "^17.3.1",
"fflate": "^0.8.2",
"hono": "^4.12.9",
"htmlparser2": "^10.1.0",
"libcurl.js": "^0.7.4",
"modern-screenshot": "^4.6.8",
"path-browserify": "^1.0.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"zustand": "5.0.12"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@eslint/js": "^10.0.1",
"@tailwindcss/postcss": "^4.2.2",
"@types/adm-zip": "^0.5.8",
"@types/node": "^25.3.3",
"@types/path-browserify": "^1.0.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.3.0",
"adm-zip": "^0.5.17",
"autoprefixer": "^10.4.27",
"consola": "^3.4.2",
"eslint": "^10.1.0",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"open": "^11.0.0",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.3",
"vite-plugin-static-copy": "^3.4.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/engines",
"@swc/core",
"@tailwindcss/oxide",
"bufferutil",
"esbuild",
"prisma"
],
"ignoredBuiltDependencies": [
"@mercuryworkshop/scramjet"
]
},
"engines": {
"node": ">=20.19.0"
}
}