-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 853 Bytes
/
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
{
"name": "cliptext",
"version": "2.0.1",
"description": "clipboard manager",
"main": "main.js",
"scripts": {
"build": "electron-builder",
"start": "electron ."
},
"build": {
"appId": "com.xxxxxxx.cliptext",
"files": [
"*.js",
"*.html",
"package.json",
"node_modules",
"images"
],
"mac": {
"icon": "./images/icon.icns"
},
"asar": true
},
"author": "Abhilash Km (aaabhilash97@gmail.com)",
"license": "ISC",
"devDependencies": {
"electron": "^15.5.5",
"electron-builder": "^22.1.0",
"electron-rebuild": "^1.5.11",
"eslint": "^6.6.0",
"eslint-config-google": "^0.14.0"
},
"dependencies": {
"auto-launch": "^5.0.1",
"electron-log": "^2.2.6",
"got": "^11.8.5",
"md5": "^2.2.1",
"nedb": "^1.8.0",
"semver": "^5.3.0"
}
}