-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
58 lines (58 loc) · 1.19 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
{
"name": "droppoint",
"productName": "DropPoint",
"version": "1.3.1",
"description": "Drag-and-drop assist",
"main": "./src/App.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"release": "electron-builder --publish always"
},
"keywords": [],
"author": {
"name": "Sudev Suresh Sreedevi",
"email": "sudevssuresh@gmail.com"
},
"license": "GPL-3.0-or-later",
"build": {
"appId": "com.gamegods3.droppoint",
"productName": "DropPoint",
"mac": {
"category": "public.app-category.utilities"
},
"dmg": {
"icon": false
},
"linux": {
"target": [
"AppImage",
"deb",
"tar.gz",
"rpm"
],
"category": "Utility"
},
"win": {
"publisherName": "Sudev Suresh Sreedevi",
"target": [
"zip",
"nsis"
]
}
},
"dependencies": {
"electron-store": "^8.1.0",
"electron-updater": "^4.3.9",
"preline": "^1.1.2"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"electron": "^21.3.1",
"electron-builder": "^23.0.2",
"tailwindcss": "^3.1.8"
},
"optionalDependencies": {
"dmg-license": "^1.0.11"
}
}