-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "windows-ocr",
"productName": "Windows OCR",
"version": "1.0.0",
"description": "windows ocr using google vision",
"author": "Karel Bondan",
"license": "ISC",
"main": "./dist/backend/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"type": "tsc --watch",
"tailwind": "npx tailwindcss -i ./src/site/global.css -o ./dist/site/style.css --watch",
"start": "npx electronmon .",
"build": "electron-builder",
"build-portable": "electron-builder --win portable"
},
"dependencies": {
"@google-cloud/vision": "^4.0.2"
},
"devDependencies": {
"electron": "^28.1.3",
"@types/electron": "^1.6.10",
"electron-builder": "^24.9.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
},
"build": {
"appId": "Windows OCR",
"productName": "Windows OCR",
"target": "NSIS",
"directories": {
"output": "build",
"buildResources": "build-assets"
},
"files": "!build-assets${/*}",
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": false
},
"win": {
"appId": "Windows OCR",
"icon": "build-assets/icon.ico"
}
}
}