-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 3.16 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 3.16 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
{
"name": "llg-mp",
"description": "Language Learning Gamification Media Player",
"author": "Ahmed Maher",
"version": "0.2.4",
"main": "app.js",
"dependencies": {
"asyncawait": "^3.0.0",
"autocompleter": "^6.0.5",
"electron-dl": "^1.14.0",
"electron-google-analytics": "^0.1.0",
"electron-log": "^3.0.5",
"fibers": "^5.0.0",
"google-translate-api": "^2.3.0",
"google-translate-api-browser": "^1.1.71",
"gtts": "^0.2.1",
"install": "^0.12.2",
"jquery": "3.3.1",
"languagedetect": "^2.0.0",
"nedb": "^1.8.0",
"node-gtts": "^2.0.2",
"node-localstorage": "^1.3.1",
"npm": "^6.9.0",
"opensubtitles-api": "^5.0.1",
"subsrt": "^1.1.1",
"sweetalert": "^2.1.2",
"sweetalert2": "^8.10.2",
"universal-analytics": "^0.4.20",
"wcjs-player": "^6.0.0",
"webchimera.js": "^0.2.7",
"xmlhttprequest": "^1.8.0"
},
"env": "development",
"devDependencies": {
"electron": "11.1.0",
"electron-builder": "^20.39.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.1.2"
},
"scripts": {
"postinstall-windows": "npx patch-package && cp -r ./wcjs-prebuilt/wcjs_electron_11.1.0_x64_win/webchimera.js ./node_modules ",
"postinstall-linux": "sudo apt-get install vlc && npx patch-package && npm install webchimera.js --ignore-scripts && mkdir node_modules/webchimera.js/Release && cp ./wcjs-prebuilt/wcjs_electron_11.1.0_x64_linux/WebChimera.js.node ./node_modules/webchimera.js/Release",
"dev-windows": "nodemon --watch . --exec \"./node_modules/electron/dist/electron.exe . --debug\" --ext html,js,json,css",
"dev-linux": "nodemon --watch . --exec \"./node_modules/electron/dist/electron . --debug\" --ext html,js,json,css",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"linux": {
"target": [
"deb"
]
},
"win": {
"target": "NSIS",
"icon": "build/icon.ico"
},
"build": {
"appId": "com.electron.llg-mp",
"files": [
"**/*",
"build"
]
,
"mac": {
"category": "your.app.category.type"
},
"asar": false
}
}