-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.16 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
80
81
82
{
"name": "dofus-crafting-tracker",
"version": "2.1.0",
"description": "Dofus Crafting Tracker application",
"main": "dist-electron/main.js",
"scripts": {
"start": "electron .",
"dev": "concurrently \"npm run dev:react\" \"npm run dev:electron\"",
"dev:react": "vite",
"dev:electron": "tsc && electron .",
"build": "npm run build:react && npm run build:electron",
"build:react": "vite build",
"build:electron": "tsc",
"package": "electron-builder --config electron-builder.config.js",
"package:portable": "electron-builder --config electron-builder.config.js -p never",
"download-data": "node scripts/downloadData.js"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"axios": "^1.7.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dexie": "^4.0.8",
"electron-window-state": "^5.0.3",
"lucide-react": "^0.429.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.12.7",
"shadcn-ui": "^0.2.3",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.x.x",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"electron": "^32.0.1",
"electron-builder": "^24.13.3",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vite-electron-plugin": "^0.8.3"
},
"build": {
"appId": "com.sinpls.dofus-crafting-tracker",
"productName": "Dofus Crafting Tracker",
"files": [
"dist/**/*",
"dist-electron/**/*",
"package.json"
],
"directories": {
"output": "release"
},
"extraResources": [
{
"from": "data",
"to": "data",
"filter": [
"**/*"
]
}
],
"win": {
"target": [
"portable"
],
"icon": "public/Dofus.ico"
},
"asar": true,
"asarUnpack": [
"dist-electron/preload.js"
]
}
}