-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.63 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
{
"name": "casingautomation",
"private": true,
"version": "1.0.0",
"description": "Professional toolkit for MBA casing preparation.",
"author": "Stern MCA",
"repository": {
"type": "git",
"url": "https://github.com/ce2727/CasingAutomation.git"
},
"type": "module",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"electron:start": "npm run build && electron .",
"package:dir": "npm run build && electron-builder --dir",
"package:mac": "npm run build && electron-builder --mac",
"package:win": "npm run build && electron-builder --win",
"package:all": "npm run build && electron-builder -mw",
"build:packages": "./build-packages.sh",
"deploy:vercel": "./deploy-vercel.sh"
},
"build": {
"appId": "com.casingautomation.app",
"productName": "ProCase",
"directories": {
"output": "release"
},
"files": [
"dist",
"dist-electron"
],
"mac": {
"icon": "public/desktop-icon.png",
"artifactName": "ProCase-macOS-${arch}.${ext}",
"target": [
{
"target": "dmg",
"arch": ["arm64", "x64"]
}
],
"hardenedRuntime": false,
"gatekeeperAssess": false
},
"win": {
"icon": "public/desktop-icon.png",
"artifactName": "ProCase-Windows-Setup.${ext}",
"target": [
{
"target": "nsis",
"arch": ["x64"]
}
]
},
"linux": {
"icon": "public/desktop-icon.png"
}
},
"dependencies": {
"dexie": "^4.3.0",
"express": "^5.2.1",
"localtunnel": "^2.0.2",
"lucide-react": "^0.575.0",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^5.4.624",
"peerjs": "^1.5.5",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"concurrently": "^9.2.1",
"electron": "^40.6.1",
"electron-builder": "^26.8.1",
"esbuild": "^0.27.3",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"ts-node": "^10.9.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^8.0.0-beta.13",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6",
"wait-on": "^9.0.4"
},
"overrides": {
"vite": "^8.0.0-beta.13"
}
}