-
-
Notifications
You must be signed in to change notification settings - Fork 136
/
package.json
91 lines (91 loc) · 2.25 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "odrive",
"version": "0.3.0",
"description": "Simple google drive client",
"main": "main.js",
"repository": "https://github.com/liberodark/ODrive.git",
"author": "liberodark, coyotte508 <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"array-unique": "^0.3.2",
"auto-launch": "^5.0.5",
"body-parser": "^1.19.0",
"bootstrap": "4.4.1",
"chokidar": "^3.3.1",
"command-line-args": "^5.1.1",
"deep-equal": "^2.0.1",
"delay": "^4.3.0",
"ejs": "^3.0.1",
"express": "^4.17.1",
"file-loader": "^5.0.2",
"font-awesome": "^4.7.0",
"fs-extra": "^8.1.0",
"googleapis": "^47.0.0",
"jquery": "^3.4.1",
"md5-file": "^4.0.0",
"mkdirp-promise": "^5.0.1",
"morgan": "^1.9.1",
"nedb-promise": "^2.0.1",
"node-notifier": "^6.0.0",
"node-sass": "^4.13.0",
"popper.js": "^1.16.0",
"sass-loader": "^8.0.0",
"tether": "^1.4.7"
},
"devDependencies": {
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.1",
"electron": "^8.0.1",
"electron-builder": "^22.3.3",
"electron-packager": "^14.1.1",
"eslint": "^6.8.0",
"mini-css-extract-plugin": "^0.9.0",
"resolve-url-loader": "^3.1.1",
"style-loader": "^1.1.2",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"scripts": {
"lint": "eslint app main.js",
"test": "npm run lint",
"start": "electron main",
"webpack": "webpack",
"postinstall": "npm run webpack && electron-builder install-app-deps",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"release-linux": "electron-builder --linux",
"release-windows": "electron-builder --windows",
"release-mac": "electron-builder --mac"
},
"build": {
"appId": "com.electron.odrive",
"productName": "OpenDrive",
"files": [
"!dist",
"!release-builds"
],
"linux": {
"category": "Archiving",
"target": [
"AppImage",
"snap"
]
},
"snap": {
"grade": "stable",
"confinement": "classic",
"summary": "This is a Linux GUI client for Google Drive."
},
"win": {
"target": [
"nsis"
]
},
"mac": {
"target": [
"dmg"
]
}
}
}