-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.52 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.52 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
{
"name": "dappbooster",
"version": "3.1.5",
"description": "Agent-friendly dAppBooster installer that scaffolds Web3 dApps via TUI or non-interactive CLI/CI.",
"keywords": [
"dappbooster",
"dapp",
"web3",
"blockchain",
"ethereum",
"evm",
"scaffolding",
"starter",
"template",
"cli",
"installer",
"generator",
"tui",
"non-interactive",
"ci",
"agent",
"automation"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BootNodeDev/dAppBoosterInstallScript"
},
"bin": "dist/cli.js",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "pnpm biome check",
"lint:fix": "pnpm biome check --write"
},
"files": [
"dist"
],
"dependencies": {
"figures": "^6.1.0",
"ink": "^5.2.1",
"ink-big-text": "^2.0.0",
"ink-divider": "^4.1.1",
"ink-gradient": "^3.0.0",
"ink-link": "^4.1.0",
"ink-select-input": "^6.2.0",
"ink-text-input": "^6.0.0",
"meow": "^14.1.0",
"react": "^18.3.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@sindresorhus/tsconfig": "^7.0.0",
"@types/node": "^22.15.21",
"@types/react": "^18.3.22",
"@vitest/coverage-v8": "^4.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.8.3",
"vitest": "^4.1.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome"
]
}
}