-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathpackage.json
54 lines (54 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
46
47
48
49
50
51
52
53
54
{
"type": "module",
"name": "a5-pii-anonymizer",
"version": "0.0.1",
"main": "main.js",
"description": "A short description of your app",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "electron .",
"build": "electron-builder",
"build:mac": "electron-builder --mac",
"build:win": "electron-builder --win",
"build:linux": "electron-builder --linux"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"exceljs": "^4.3.0",
"@xenova/transformers": "2.17.2",
"mammoth": "^1.5.2",
"docx": "^8.4.0",
"pdf-parse": "^1.1.1",
"pdf-lib": "^1.17.1"
},
"devDependencies": {
"electron": "^34.2.0",
"electron-builder": "^23.6.0"
},
"build": {
"productName": "A5 PII Anonymizer",
"appId": "com.a5.piiAnonymizer",
"mac": {
"icon": "assets/icon",
"category": "public.app-category.utilities"
},
"win": {
"icon": "assets/icon"
},
"directories": {
"buildResources": "assets"
},
"files": [
"**/*",
{
"from": "assets",
"to": "assets",
"filter": [
"icon.png"
]
}
]
}
}