-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.5 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
{
"name": "clipshare",
"version": "1.0.0",
"description": "Screenshot sharing app using Google Drive",
"repository": "https://github.com/lamazingco/clipshare",
"author": "Lamazing",
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint -c tslint.json -p tsconfig.json",
"start": "npm run build && electron ./app/main.js",
"dist": "npm run build && electron-builder -lmw"
},
"main": "app/main.js",
"build": {
"appId": "co.lamazing.clipshare",
"productName": "ClipShare",
"copyright": "Copyright © 2018 ClipShare",
"mac": {
"target": [
"dmg",
"zip"
],
"category": "Productivity"
},
"linux": {
"category": "Utility",
"target": [
"AppImage"
]
},
"win": {
"target": "NSIS"
}
},
"keywords": [
"electron",
"screenshot",
"drive",
"google drive",
"google",
"typescript",
"screenshot sharing",
"sharing"
],
"devDependencies": {
"electron": "^2.0.11",
"electron-builder": "^20.28.4",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"dependencies": {
"@types/chokidar": "^1.7.5",
"@types/clipboardy": "^1.1.0",
"@types/fs-extra": "^5.0.4",
"@types/mime-types": "^2.1.0",
"@types/node": "^10.11.3",
"bitly": "^6.0.8",
"chokidar": "^2.0.4",
"clipboardy": "^1.2.3",
"electron-preferences": "^1.2.0",
"fs-extra": "^7.0.0",
"googleapis": "^34.0.0",
"mime-types": "^2.1.20"
}
}