-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.3 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
{
"name": "eve-babel",
"version": "0.1.0",
"description": "Windows-first EVE Online chat translation desktop app",
"private": true,
"type": "module",
"main": "out/main/main.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"pack": "npm run build && electron-builder --dir --config electron-builder.yml -c.directories.output=dist/pack",
"dist": "npm run build && electron-builder --win nsis --config electron-builder.yml -c.directories.output=dist/release --publish never",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"build:terms": "npx tsx scripts/build-translation-table.ts"
},
"dependencies": {
"chokidar": "^5.0.0",
"i18next": "^26.2.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-i18next": "^17.0.8",
"sql.js": "^1.13.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/sql.js": "^1.4.9",
"@vitejs/plugin-react": "^5.2.0",
"autoprefixer": "^10.5.0",
"electron": "^42.2.0",
"electron-builder": "^26.0.12",
"electron-vite": "^5.0.0",
"postcss": "^8.5.15",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"vite": "^7.1.10",
"vitest": "^3.2.4"
}
}