-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 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
{
"name": "network-bootstrapper",
"module": "src/index.ts",
"type": "module",
"version": "1.3.4",
"private": false,
"license": "FSL-1.1-MIT",
"author": {
"name": "SettleMint",
"email": "support@settlemint.com",
"url": "https://settlemint.com"
},
"homepage": "https://github.com/settlemint/network-bootstrapper/blob/main/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/settlemint/network-bootstrapper.git"
},
"bugs": {
"url": "https://github.com/settlemint/network-bootstrapper/issues",
"email": "support@settlemint.com"
},
"scripts": {
"typecheck": "tsc --noEmit",
"check": "ultracite check",
"check:fix": "ultracite fix",
"test": "bun test",
"helm": "helm upgrade --install network ./charts/network -n network --create-namespace --timeout 15m",
"package:pack": "helm package charts/network --destination .",
"package:push:harbor": "helm push ./network-*.tgz oci://ghcr.io/settlemint/network-bootstrapper",
"docs:cli": "./scripts/docs-cli.sh"
},
"devDependencies": {
"@biomejs/biome": "2.2.7",
"@types/bun": "latest",
"ultracite": "5.6.4"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@inquirer/prompts": "8.3.0",
"@kubernetes/client-node": "1.4.0",
"commander": "14.0.3",
"multiformats": "13.4.2",
"lefthook": "2.1.2",
"ox": "0.14.0",
"viem": "2.46.3",
"yaml": "2.8.2",
"zod": "4.3.6"
}
}