-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.75 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
{
"name": "dappbooster",
"version": "3.4.0",
"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": ">=24.15.0"
},
"packageManager": "pnpm@11.24.0",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit && tsc -p tsconfig.tests.json",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "biome check --error-on-warnings",
"lint:fix": "biome check --write",
"knip": "knip",
"prepare": "husky"
},
"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-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"meow": "^14.1.0",
"react": "^18.3.1"
},
"devDependencies": {
"@biomejs/biome": "2.5.13",
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@sindresorhus/tsconfig": "^8.1.0",
"@types/node": "^24.13.4",
"@types/react": "^18.3.31",
"@vitest/coverage-v8": "^5.0.0",
"husky": "^9.1.7",
"knip": "6.35.1",
"lint-staged": "^17.5.1",
"typescript": "^5.9.3",
"vitest": "^5.0.0"
}
}