-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.38 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
46
47
48
49
50
51
52
53
54
55
{
"private": true,
"name": "archiveye",
"description": "An GUI offline OCR tool for searching scanned PDF documents on a per-page basis, prioritizing accessibility, privacy, and user experience with Nextron and NodeJS",
"version": "0.3.2",
"author": "Eastrd",
"main": "app/background.js",
"scripts": {
"dev": "nextron",
"build": "nextron build",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"productName": "Archiveye",
"win": {
"target": "nsis"
},
"nsis": {
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"extraResources": [
{
"from": "assets",
"to": "assets"
}
]
},
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@chakra-ui/icons": "^2.0.18",
"@chakra-ui/react": "^2.5.5",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@types/ini": "^1.3.31",
"dotenv": "^16.0.3",
"electron-serve": "^1.1.0",
"electron-store": "^8.1.0",
"framer-motion": "^10.12.0",
"ini": "^4.1.0",
"pdfjs-dist": "^3.5.141",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"electron": "^21.3.3",
"electron-builder": "^23.6.0",
"next": "^12.3.4",
"nextron": "^8.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.4"
}
}