-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.59 KB
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
{
"name": "holdon",
"version": "1.4.2",
"description": "yet another clipboard manager",
"author": "ankh davis",
"license": "MIT",
"homepage": "https://github.com/flexphere/holdon#readme",
"bugs": {
"url": "https://github.com/flexphere/holdon/issues"
},
"main": "app/main.js",
"scripts": {
"start": "electron . --dev",
"dev": "npx electron . --dev --devtools",
"build-svelte": "cd svelte && npm install && npm run build && cp public/build/bundle* ../app/ && cp public/bundle* ../app/",
"build": "node ./scripts/build.js",
"postversion": "node ./scripts/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flexphere/holdon.git"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"electron": "^13.1.2",
"electron-builder": "^22.11.7",
"semantic-release": "^17.4.4",
"shelljs": "^0.8.4"
},
"dependencies": {
"svelte": "^3.38.2"
},
"private": true,
"productName": "HoldOn",
"build": {
"appId": "com.bar38.Holdon",
"productName": "HoldOn",
"files": [
"app/**/*"
],
"asar": true,
"extraResources": [
"app/bin/"
],
"win": {
"target": "portable",
"icon": "app/holdon.png"
}
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
"dist/*.exe"
]
}
],
"@semantic-release/git"
]
}
}