forked from myparsleycat/nahida-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.54 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
{
"name": "nahida-desktop-linux",
"version": "0.1.0",
"description": "Linux port of Nahida Desktop mod manager",
"author": "Relained",
"homepage": "https://github.com/myparsleycat/nahida-desktop",
"license": "SEE LICENSE IN LICENSE",
"main": "./out/main/index.js",
"scripts": {
"build:native-mod": "cd native/native-mod && pnpm install && pnpm run build",
"build:native-fs": "cd native/native-fs && pnpm install && pnpm run build",
"build:native": "pnpm run build:native-mod && pnpm run build:native-fs",
"lint": "oxlint",
"fmt": "oxfmt",
"db:generate": "drizzle-kit generate",
"start": "electron-vite preview",
"dev": "pnpm run db:generate && electron-vite dev",
"build": "pnpm run db:generate && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"clean": "rimraf dist out",
"gen:icons": "node scripts/gen-icons.mjs",
"build:unpack": "pnpm run clean && pnpm run gen:icons && pnpm run build && electron-builder --dir && pnpm run verify:asar",
"build:linux": "pnpm run clean && pnpm run gen:icons && pnpm run build && electron-builder --linux && pnpm run verify:asar",
"build:linux:fast": "pnpm run gen:icons && pnpm run build && electron-builder --linux && pnpm run verify:asar",
"verify:asar": "node scripts/verify-asar.mjs"
},
"dependencies": {
"@borewit/text-codec": "^0.2.2",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"auto-launch": "^5.0.6",
"better-sqlite3": "^12.9.0",
"drizzle-orm": "^0.45.2",
"electron-devtools-installer": "^4.0.0",
"electron-log": "^5.4.3",
"electron-updater": "^6.8.3",
"es-hangul": "^2.3.8",
"es-toolkit": "^1.45.1",
"fast-glob": "^3.3.3",
"file-type": "^22.0.1",
"filename-reserved-regex": "^4.0.0",
"filesize": "^11.0.15",
"fs-extra": "^11.3.4",
"ms": "^2.1.3",
"nanoid": "^5.1.7",
"p-limit": "^7.3.0",
"p-queue": "^9.1.2",
"path-browserify": "^1.0.1",
"pino": "^10.3.1",
"rotating-file-stream": "^3.2.9",
"rxjs": "^7.8.2",
"sharp": "^0.34.5",
"undici": "^7.24.6",
"write-file-atomic": "^7.0.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^2.0.0",
"@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-form": "^1.29.0",
"@tanstack/react-query": "^5.99.0",
"@tanstack/react-router": "^1.168.21",
"@tanstack/react-virtual": "^3.13.23",
"@tanstack/router-plugin": "^1.167.22",
"@types/better-sqlite3": "^7.6.13",
"@types/filename-reserved-regex": "^3.0.0",
"@types/node": "24",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/write-file-atomic": "^4.0.3",
"@vitejs/plugin-react": "^6.0.1",
"babel-plugin-react-compiler": "^1.0.0",
"class-variance-authority": "^0.7.1",
"dotenv": "^17.4.2",
"drizzle-kit": "^0.31.10",
"electron": "^40.8.0",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"lucide-react": "^1.8.0",
"motion": "^12.38.0",
"oxfmt": "^0.45.0",
"oxlint": "^1.60.0",
"radix-ui": "^1.4.3",
"react": "^19.2.5",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.5",
"react-i18next": "^17.0.3",
"rimraf": "^6.1.3",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.2",
"vite": "^8.0.8",
"zustand": "^5.0.12"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild",
"sharp"
]
}
}