dappbooster 3.1.4 → 3.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +21 -1
- package/readme.md +12 -3
package/package.json
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dappbooster",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.5",
|
|
4
|
+
"description": "Agent-friendly dAppBooster installer that scaffolds Web3 dApps via TUI or non-interactive CLI/CI.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"dappbooster",
|
|
7
|
+
"dapp",
|
|
8
|
+
"web3",
|
|
9
|
+
"blockchain",
|
|
10
|
+
"ethereum",
|
|
11
|
+
"evm",
|
|
12
|
+
"scaffolding",
|
|
13
|
+
"starter",
|
|
14
|
+
"template",
|
|
15
|
+
"cli",
|
|
16
|
+
"installer",
|
|
17
|
+
"generator",
|
|
18
|
+
"tui",
|
|
19
|
+
"non-interactive",
|
|
20
|
+
"ci",
|
|
21
|
+
"agent",
|
|
22
|
+
"automation"
|
|
23
|
+
],
|
|
4
24
|
"license": "MIT",
|
|
5
25
|
"repository": {
|
|
6
26
|
"type": "git",
|
package/readme.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# dAppBooster installer
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Agent-friendly installer for [dAppBooster](https://dappbooster.dev/) that scaffolds Web3 dApps via TUI or non-interactive CLI/CI with JSON output.
|
|
4
4
|
|
|
5
5
|
## Requirements
|
|
6
6
|
|
|
@@ -17,7 +17,16 @@ pnpm dlx dappbooster
|
|
|
17
17
|
|
|
18
18
|
dAppBooster documentation: https://docs.dappbooster.dev/
|
|
19
19
|
|
|
20
|
-
##
|
|
20
|
+
## Agent / CI quickstart
|
|
21
|
+
|
|
22
|
+
Use `--info` to discover features, then run a non-interactive install that returns JSON.
|
|
23
|
+
|
|
24
|
+
```shell
|
|
25
|
+
pnpm dlx dappbooster --info
|
|
26
|
+
pnpm dlx dappbooster --ni --name my_dapp --mode full
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Agent / non-interactive / CI mode
|
|
21
30
|
|
|
22
31
|
The installer supports a non-interactive mode for CI pipelines and AI agents. It activates automatically when stdout is not a TTY, or explicitly with the `--ni` flag.
|
|
23
32
|
|
|
@@ -141,4 +150,4 @@ node cli.js
|
|
|
141
150
|
|
|
142
151
|
## Releasing new versions to NPM
|
|
143
152
|
|
|
144
|
-
New releases are automatically uploaded to NPM using GitHub actions.
|
|
153
|
+
New releases are automatically uploaded to NPM using GitHub actions.
|