-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.33 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
{
"name": "dft-analyzer",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "oxlint",
"preview": "vite preview",
"electron:dev": "concurrently -k \"cross-env vite\" \"wait-on tcp:5173 && electron .\"",
"electron:build": "vite build && electron-builder"
},
"build": {
"appId": "com.securemeters.dftanalyzer",
"productName": "DFT Analyzer",
"files": [
"dist/**/*",
"electron/**/*"
],
"directories": {
"output": "release"
},
"win": {
"target": "nsis"
},
"mac": {
"target": "dmg"
},
"linux": {
"target": "AppImage"
}
},
"dependencies": {
"html2canvas": "^1.4.1",
"jspdf": "^4.2.1",
"jspdf-autotable": "^5.0.8",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"recharts": "^3.10.1",
"xlsx": "^0.18.5",
"zustand": "^5.0.15"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.3",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.7",
"@vitejs/plugin-react": "^6.1.1",
"concurrently": "^10.0.5",
"cross-env": "^10.1.0",
"electron": "^44.3.0",
"electron-builder": "^26.15.3",
"oxlint": "^1.81.0",
"tailwindcss": "^4.3.3",
"vite": "^8.3.0",
"wait-on": "^9.1.0"
}
}