-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 2.27 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
{
"name": "org.holochain.kangaroo-electron2",
"version": "0.1.0",
"license": "CAL-1.0",
"main": "./out/main/index.js",
"scripts": {
"dev": "yarn write:configs && yarn pouch:unpack && yarn create:icons && electron-vite dev",
"setup": "yarn && yarn fetch:binaries",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "yarn typecheck:node && yarn typecheck:web",
"fetch:binaries": "node ./scripts/fetch-binaries.js",
"pouch:unpack": "node ./scripts/unpack-pouch.js",
"create:icons": "node ./scripts/create-icons.js",
"write:configs": "node ./scripts/write-builder-config.js",
"build": "yarn write:configs && yarn pouch:unpack && yarn create:icons && yarn typecheck && electron-vite build",
"build:win": "yarn build && electron-builder --win --config",
"build:mac-arm64": "yarn build && electron-builder --mac --arm64 --config",
"build:mac-x64": "yarn build && electron-builder --mac --x64 --config",
"build:linux": "yarn build && electron-builder --linux --config",
"lint": "eslint --ext .ts,.tsx ."
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^3.0.0",
"@holochain/client": "0.17.1",
"@holochain/hc-spin-rust-utils": "0.300.1",
"@lightningrodlabs/we-rust-utils": "0.300.2",
"@msgpack/msgpack": "^2.8.0",
"adm-zip": "0.5.14",
"bufferutil": "4.0.8",
"electron-context-menu": "3.6.1",
"get-port": "7.0.0",
"nanoid": "5.0.4",
"split": "1.0.1",
"utf-8-validate": "^6.0.3",
"winston": "3.11.0"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^2.0.0",
"@electron-toolkit/eslint-config-ts": "^1.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"electron": "^29.4.1",
"electron-builder": "^24.6.3",
"electron-vite": "^2.3.0",
"eslint": "^8.0.1",
"eslint-plugin-import": "^2.25.0",
"js-yaml": "4.1.0",
"make-dir-cli": "^3.1.0",
"ncp": "^2.0.0",
"octokit": "4.0.2",
"png2icons": "2.0.1",
"rimraf": "^5.0.1",
"ts-node": "10.9.2",
"typescript": "^5.2.2",
"vite": "^4.4.9"
}
}