-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.3 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
{
"name": "clipboard-manager-js",
"version": "1.7.2",
"main": "src/clipboardManager/clipboardManager.js",
"scripts": {
"start": "electron .",
"build": "rm -rf dist; electron-builder",
"ship": "git push && electron-builder --win -p always",
"shipLinux": "git push && electron-builder --linux -p always"
},
"keywords": [
"clipboard",
"manager",
"electron"
],
"author": "mahhov1",
"license": "ISC",
"dependencies": {
"js-desktop-base": "^5.3.0"
},
"devDependencies": {
"electron": "^22.0.0",
"electron-builder": "^23.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mahhov/clipboard-manager-js.git"
},
"bugs": {
"url": "https://github.com/mahhov/clipboard-manager-js/issues"
},
"homepage": "https://github.com/mahhov/clipboard-manager-js#readme",
"description": "",
"build": {
"asar": false,
"artifactName": "${name}-${version}-${os}-${arch}.${ext}",
"files": [
"resources",
"src"
],
"icon": "./resources/icons/fa-copy-regular-256.png",
"linux": {
"target": "AppImage",
"publish": {
"provider": "github",
"releaseType": "release"
}
},
"win": {
"publish": {
"provider": "github",
"releaseType": "release"
}
}
}
}