-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.43 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
{
"name": "framecad",
"version": "1.1.12",
"description": "CAD collaboration tool for FRC robotics teams",
"author": {
"name": "Trent Fox",
"email": "tfox@swrobotics.com"
},
"main": "./out/main/index.js",
"scripts": {
"dev": "cross-env ELECTRON_DISABLE_SANDBOX=1 electron-vite dev",
"typecheck": "tsc -b --noEmit",
"build": "npm run typecheck && electron-vite build",
"preview": "electron-vite preview",
"package": "electron-vite build && electron-builder --config electron-builder.yml",
"package:win": "scripts/build-addin.bat && electron-vite build && electron-builder --config electron-builder.yml --win",
"test": "vitest run"
},
"dependencies": {
"@fontsource/opendyslexic": "^5.2.5",
"@lore-vcs/sdk": "^0.8.3",
"chokidar": "^4.0.3",
"electron-updater": "^6.8.3",
"google-auth-library": "^10.6.2",
"googleapis": "^172.0.0",
"html-to-image": "^1.11.13",
"lucide-react": "^1.14.0",
"pixi.js": "^8.18.1"
},
"devDependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^4.0.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.7.0",
"cross-env": "^7.0.3",
"electron": "^35.1.2",
"electron-builder": "^25.1.8",
"electron-vite": "^3.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"typescript": "^5.8.3",
"vite": "^6.3.4",
"vitest": "^4.1.5"
}
}