forked from ahmetkorkmaz3/clipaste
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.49 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
{
"name": "urboard",
"productName": "UR Board",
"version": "1.0.0",
"description": "The Clipboard Manager",
"main": "main.js",
"scripts": {
"start": "electron .",
"d": "electron-builder",
"dl": "electron-builder --linux",
"dm": "electron-builder --mac",
"dw": "electron-builder --win"
},
"repository": "https://github.com/vinugawade/urboard.git",
"keywords": [
"clipboard",
"copy",
"paste",
"keynote"
],
"license": "Apache-2.0",
"author": "Vinay Gawade <[email protected]>",
"devDependencies": {
"@hydraulic/conveyor": "^12.1.0",
"electron": "^27.0.4",
"electron-builder": "^24.6.4"
},
"dependencies": {
"jquery": "^3.7.1",
"lowdb": "1.0.0",
"short-unique-id": "^5.0.3",
"sweetalert2": "^11.6.13"
},
"build": {
"appId": "com.vinugawade.urboard",
"linux": {
"target": [
"snap"
],
"vendor" : "Vinay Gawade",
"maintainer" : "Vinay Gawade",
"desktop": "UR Board",
"description": "The Clipboard Manager",
"files": [
"**/*",
{
"from": "node_modules",
"to": "node_modules"
},
{
"from": "assets",
"to": "assets"
}
],
"icon": "assets/logo/logo.svg",
"category": "Utility"
},
"mac": {
"target": [
"dmg"
],
"icon": "assets/logo/logo.png"
},
"win": {
"target": [
"msi"
],
"publisherName": "Vinay Gawade"
}
}
}