-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "deepl-tr-el",
"version": "0.1.0-4",
"description": "deepl translate using electron, deepl-scraper-pp2 and ag-grid",
"main": "src/index.js",
"main1": "index.js",
"scripts": {
"dev": "electron . --trace-warnings",
"gen-style": "cross-env NODE_DEV=production tailwindcss -i ./src/index.css -o ./src/style.css",
"builder": "electron-builder --win",
"builder-test": "electron-builder --win --dir",
"builder-yaml": "electron-builder --win --config builder-config.yaml",
"memo": "echo start fastapi server in src/app first python -m ",
"testm": "mocha -t 9000 test/deeplTranslate.test.js",
"memo1": "echo runInBand runs test sequentially due to commonly used browser instance (maybe use context)",
"test": "jest --testTimeout 30000 --runInBand "
},
"keywords": [
"deepl",
"electron",
"ag-grid"
],
"author": "",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.7",
"consola": "^2.15.3",
"cross-env": "^7.0.3",
"electron": "^22.2.0",
"electron-builder": "^23.6.0",
"esm": "^3.2.25",
"jest": "^29.6.2",
"mocha": "^10.2.0",
"nodemon": "^2.0.20"
},
"dependencies": {
"ag-grid-community": "^29.0.0",
"axios": "^1.3.2",
"electron-debug": "^3.2.0",
"electron-is-dev": "^2.0.0",
"electron-progressbar": "^2.0.1",
"electron-squirrel-startup": "^1.0.0",
"electron-store": "^8.1.0",
"iconv-lite": "^0.6.3",
"jschardet": "^3.0.0",
"json-2-csv": "^3.18.0",
"mammoth": "^1.5.1",
"office-text-extractor": "^2.0.0",
"python-shell": "^5.0.0",
"tracer": "^1.1.6",
"wait-on": "^7.0.1"
},
"build": {
"win": {
"icon": "build/world.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"allowElevation": true
},
"extraResources": [
{
"from": "./src/app/",
"to": "app",
"filter": [
"**/*"
]
}
],
"asar": true
}
}