This repository was archived by the owner on Sep 27, 2022. It is now read-only.
forked from lightningrodlabs/acorn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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": "electron-application-name",
"version": "0.0.1",
"description": "Electron application description goes here",
"main": "dist/index.js",
"scripts": {
"start": "tsc && electron .",
"build": "tsc && electron-builder build",
"tsc": "tsc",
"lint": "eslint --ext .ts ."
},
"keywords": [],
"author": {
"name": "Connor Turland",
"email": "[email protected]"
},
"license": "CAL-1.0",
"build": {
"productName": "ElectronHolochainTemplate",
"afterSign": "./afterSignHook.js",
"appId": "com.some-domain-name.app-name",
"copyright": "© 2022 So And So Ltd. ",
"asarUnpack": "binaries/**/*",
"files": [
"dist/**/*",
"web/**/*",
"binaries/**/*",
"node_modules/**/*",
"package.json"
],
"win": {
"target": "NSIS",
"icon": "build/icon.ico",
"artifactName": "${productName}.Setup.${version}.${ext}"
},
"directories": {
"output": "out"
}
},
"devDependencies": {
"@types/split": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"electron": "^20.1.3",
"electron-builder": "^23.3.3",
"eslint": "^7.25.0",
"eslint-plugin-import": "^2.22.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@lightningrodlabs/electron-holochain": "0.2.0",
"electron-log": "^4.3.5",
"electron-notarize": "^1.0.0",
"split": "^1.0.1"
}
}