-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 2.74 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "localnode",
"productName": "Local Node",
"version": "0.1.0",
"description": "Local ENS site resolver using IPFS and Ethereum",
"type": "module",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:mac": "electron-builder --mac",
"build:mac:dev": "electron-builder --mac --arm64 --dir",
"build:linux": "electron-builder --linux",
"build:all": "electron-builder --mac --linux",
"test": "vitest run",
"t": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"build": {
"appId": "eth.localnode.app",
"productName": "Local Node",
"asar": false,
"files": [
"src/**/*",
"assets/**/*",
"package.json",
"pnpm-lock.yaml",
"!node_modules",
"node_modules/**/*"
],
"extraResources": [
{
"from": "node_modules/undici",
"to": "app/node_modules/undici",
"filter": ["**/*"]
}
],
"npmRebuild": true,
"nodeGypRebuild": false,
"directories": {
"buildResources": "assets"
},
"mac": {
"icon": "assets/icon.png",
"category": "public.app-category.utilities",
"target": [
{
"target": "dmg",
"arch": [
"arm64"
]
}
],
"type": "distribution"
},
"linux": {
"icon": "assets/icon.png",
"target": [
"deb",
"AppImage"
],
"category": "Network;Utility"
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
}
},
"keywords": [
"ens",
"ipfs",
"ethereum",
"dns",
"local",
"cli"
],
"author": {
"name": "Joel Thorstensson",
"email": "joel+git@stigmergic.org"
},
"license": "MIT",
"dependencies": {
"@a16z/helios": "^0.9.3",
"@expo/sudo-prompt": "^9.3.2",
"@simplepg/common": "^1.0.0",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"ipfsd-ctl": "^15.0.2",
"it-all": "^3.0.9",
"kubo": "^0.38.1",
"kubo-rpc-client": "^5.4.0",
"multiformats": "^13.4.1",
"uint8arrays": "^5.1.0",
"viem": "^2.0.0"
},
"devDependencies": {
"@vitest/ui": "^1.0.0",
"electron": "^38.2.1",
"electron-builder": "^25.1.8",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/localnode.git"
},
"bugs": {
"url": "https://github.com/yourusername/localnode/issues"
},
"homepage": "https://github.com/yourusername/localnode#readme"
}