-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.82 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.82 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
102
103
104
105
106
107
108
109
110
111
112
{
"name": "qa-auto-hardware",
"version": "1.0.0",
"description": "QA Auto Hardware Desktop Application",
"main": "dist-electron/main.js",
"author": "QA Auto Hardware Team",
"license": "MIT",
"private": true,
"scripts": {
"dev": "vite",
"setup:ocr": "bash scripts/setup_ocr.sh",
"build": "tsc && vite build && electron-builder --dir",
"build:win": "tsc && vite build && electron-builder --win",
"build:mac": "tsc && vite build && electron-builder --mac",
"build:linux": "tsc && vite build && electron-builder --linux",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"typecheck": "tsc --noEmit",
"electron:dev": "vite",
"electron:build": "vite build && electron-builder",
"electron:build:all": "vite build && electron-builder -mwl"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.3",
"@scure/bip39": "^2.0.1",
"express": "^5.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tesseract.js": "^7.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"electron": "^28.1.0",
"electron-builder": "^24.9.1",
"eslint": "^8.55.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-electron": "^0.28.0",
"vite-plugin-electron-renderer": "^0.14.5",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.qa-auto-hardware.app",
"productName": "QA Auto Hardware",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"mac": {
"category": "public.app-category.utilities",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
},
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Utility"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
}
}
}