-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
79 lines (79 loc) · 2.41 KB
/
package.json
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
{
"private": true,
"name": "alicorn-launcher",
"codename": "Amazing Grace",
"version": "2.0.0",
"type": "module",
"scripts": {
"dev": "bun build.ts",
"prod": "bun build.ts production",
"itest": "bun build.ts test",
"start": "cd build/prod && electron .",
"clean": "bun exec \"rm -rf build dist\"",
"dist": "bun pack.ts",
"type-check": "tsc",
"update-compat-table": "bun scripts/gen-compat-table.ts"
},
"devDependencies": {
"@electron/packager": "^18.3.6",
"@esbuild-plugins/tsconfig-paths": "^0.1.2",
"@types/bun": "latest",
"@types/fs-extra": "^11.0.4",
"@types/lzma": "^2.3.0",
"@types/lzma-native": "^4.0.4",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"consola": "^3.4.0",
"cross-env": "^7.0.3",
"electron": "35.0.0-alpha.1",
"esbuild": "^0.24.2",
"shx": "^0.3.4",
"tailwindcss": "^3.4.17",
"ts-patch": "^3.3.0",
"tsx": "^4.19.2",
"type-fest": "^4.32.0",
"typed-emitter": "^2.1.0",
"typescript": "^5.7.3",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.4",
"xvfb-maybe": "^0.2.1"
},
"dependencies": {
"@fontsource/noto-sans-sc": "^5.1.1",
"@fontsource/ubuntu-mono": "^5.1.1",
"@heroui/react": "2.6.13",
"@heroui/use-theme": "2.1.1",
"@primer/octicons-react": "^19.14.0",
"clsx": "^2.1.1",
"framer-motion": "^11.18.1",
"fs-extra": "^11.3.0",
"get-port": "^7.1.0",
"i18next": "^24.2.1",
"i18next-browser-languagedetector": "^8.0.2",
"lzma": "^2.3.2",
"lzma-native": "^8.0.6",
"mergician": "^2.0.2",
"nanoid": "^5.0.9",
"node-sqlite3-wasm": "^0.8.31",
"node-stream-zip": "^1.15.0",
"p-event": "^6.0.1",
"p-queue": "^8.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "^15.4.0",
"react-use": "^17.6.0",
"superserial": "^0.3.5",
"v8-compile-cache": "^2.4.0",
"wouter": "^3.3.5",
"yaml": "^2.7.0"
},
"trustedDependencies": [
"@swc/core",
"electron",
"esbuild",
"lzma-native"
]
}