-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.23 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.23 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
{
"name": "docfilter",
"version": "1.7.1",
"main": "dist/main/src/main/main.js",
"scripts": {
"dev": "concurrently \"npm run dev:renderer\" \"npm run dev:main\"",
"dev:renderer": "vite --host",
"dev:main": "tsc -p tsconfig.node.json && electron dist/main/main.js",
"build": "tsc -p tsconfig.node.json && vite build",
"build:main": "tsc -p tsconfig.node.json",
"build:renderer": "vite build",
"start": "electron dist/main/main.js",
"start-headless": "xvfb-run -a electron dist/main/main.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"dist": "npm run build && electron-builder",
"dist:win": "npm run build && electron-builder --win",
"pack": "electron-builder --dir"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/pdf-parse": "^1.1.5",
"@vitejs/plugin-react": "^4.5.2",
"concurrently": "^9.1.2",
"electron": "^36.5.0",
"jest": "^30.0.2",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3",
"vite": "^6.3.5"
},
"dependencies": {
"@types/cheerio": "^0.22.35",
"@types/node": "^24.0.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/uuid": "^10.0.0",
"axios": "^1.10.0",
"cheerio": "^1.1.0",
"mammoth": "^1.9.1",
"pdf-parse": "^1.1.1",
"puppeteer": "^24.10.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sqlite3": "^5.1.7",
"uuid": "^11.1.0"
},
"build": {
"appId": "com.blocksec.docfilter",
"productName": "DocFilter",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"node_modules/**/*",
"package.json"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "assets/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"mac": {
"target": "dmg",
"icon": "assets/icon.icns"
},
"linux": {
"target": "AppImage",
"icon": "assets/icon.png"
}
}
}