-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 899 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 899 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
32
33
34
35
36
37
38
39
40
{
"name": "dappbooster",
"version": "3.0.2",
"license": "MIT",
"bin": "dist/cli.js",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"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-spawn": "^0.1.4",
"ink-text-input": "^6.0.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",
"ts-node": "^10.9.1",
"typescript": "^5.8.3"
},
"pnpm": {
"onlyBuiltDependencies": ["@biomejs/biome"]
}
}