-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 728 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 728 Bytes
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
{
"name": "ethereum-node",
"type": "module",
"version": "1.0.0",
"description": "Helper scripts for managing an Ethereum node",
"author": "CoeJoder",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:CoeJoder/ethereum-node.git"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"lint": "./test/lint.sh",
"test": "./test/tests.sh",
"ssh": "./tools/connect.sh"
},
"devDependencies": {
"@types/hast": "^3.0.4",
"hastscript": "^9.0.1",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"dependencies": {
"@astrojs/starlight": "^0.34.4",
"astro": "^5.10.0",
"sharp": "^0.34.2"
}
}