-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 966 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
42
43
44
45
46
47
{
"name": "clipaste",
"version": "1.0.0",
"description": "Clipboard manager application",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist:linux": "electron-builder --linux"
},
"repository": "https://github.com/ahmetkorkmaz3/clipaste",
"keywords": [
"clipboard",
"copy",
"paste",
"keynote"
],
"author": "Ahmet Korkmaz <muratahmetkorkmaz@hotmail.com>",
"license": "MIT",
"devDependencies": {
"electron": "^8.2.0",
"electron-builder": "^22.4.1"
},
"dependencies": {
"jquery": "^3.4.1",
"lowdb": "^1.0.0",
"shortid": "^2.2.15",
"sweetalert2": "^9.10.9"
},
"build": {
"appId": "com.arkkod.clipaste",
"linux": {
"target": [
"snap",
"deb"
],
"files": ["**/*", "build/icon.*"],
"icon": "./build/",
"category": "Utility"
},
"mac": {
"target": [
"dmg"
],
"icon": "./images/logo.png"
}
}
}