generated from paul-boegelsack/electron-svelte-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.25 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "iota-address-book",
"version": "1.0.0",
"main": "./public/build/app.js",
"devDependencies": {
"@iota/crypto.js": "^1.8.2",
"@tsconfig/svelte": "^1.0.10",
"@types/electron": "^1.6.10",
"@types/jest": "^27.0.3",
"@types/node": "^14.11.1",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"electron": "^16.0.2",
"electron-builder": "^22.14.5",
"eslint": "^8.3.0",
"eslint-plugin-svelte3": "^3.2.1",
"jest": "^27.4.0",
"mini-css-extract-plugin": "^1.3.4",
"svelte": "^3.31.2",
"svelte-check": "^1.0.46",
"svelte-loader": "^3.0.0",
"svelte-loading-spinners": "^0.1.7",
"svelte-preprocess": "^4.3.0",
"ts-jest": "^27.0.7",
"ts-loader": "^8.0.4",
"tslib": "^2.0.1",
"typescript": "^4.0.3",
"webpack": "^5.16.0",
"webpack-cli": "^4.4.0",
"webpack-electron-reload": "^1.0.1"
},
"scripts": {
"start": "electron ./public/build/app.js",
"build": "npm run lint && cross-env NODE_ENV=production webpack",
"build:dev": "cross-env NODE_ENV=development webpack --watch",
"compile:mac": "electron-builder --mac --x64",
"compile:win": "electron-builder --win --x64",
"lint": "eslint . --cache",
"test": "jest"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@iota/iota.js": "^1.8.2",
"@iota/mqtt.js": "^1.8.2",
"bulma": "^0.9.3"
},
"build": {
"productName": "IOTA AddressBook",
"artifactName": "IOTA-AddressBook-${version}.${ext}",
"directories": {
"buildResources": "./public",
"output": "./out"
},
"files": [
"public/",
"package.json"
],
"extraResources": [
{
"from": "./public/assets",
"to": "../assets"
}
],
"appId": "com.address.book",
"dmg": {
"iconSize": 120,
"title": "${productName}",
"sign": false,
"contents": [
{
"x": 500,
"y": 250,
"type": "link",
"path": "/Applications"
},
{
"x": 170,
"y": 250,
"type": "file"
}
]
},
"nsis": {
"deleteAppDataOnUninstall": false
},
"win": {
"icon": "./public/assets/icons/win/icon.ico",
"publisherName": "Paul Boegelsack",
"target": "nsis",
"timeStampServer": "http://timestamp.digicert.com"
},
"mac": {
"icon": "./public/assets/icons/mac/icon.icns",
"category": "public.app-category.finance",
"target": [
"dmg"
],
"entitlements": "./entitlements.mac.plist",
"entitlementsInherit": "./entitlements.mac.plist",
"hardenedRuntime": true,
"gatekeeperAssess": false
}
}
}