@dwizi/create-dzx 0.1.0 → 0.1.9
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/README.md
CHANGED
|
@@ -5,13 +5,13 @@ Scaffold a new dzx MCP server project.
|
|
|
5
5
|
## Usage
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npx create-dzx
|
|
8
|
+
npx @dwizi/create-dzx
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Or with options:
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npx create-dzx my-agent --template basic --runtime node
|
|
14
|
+
npx @dwizi/create-dzx my-agent --template basic --runtime node
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
## Options
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dwizi/create-dzx",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -28,7 +28,12 @@
|
|
|
28
28
|
"engines": {
|
|
29
29
|
"node": ">=24"
|
|
30
30
|
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@dwizi/dzx": "*"
|
|
33
|
+
},
|
|
31
34
|
"scripts": {
|
|
32
|
-
"build": "node scripts/build.mjs"
|
|
35
|
+
"build": "node scripts/build.mjs",
|
|
36
|
+
"test": "node --test tests/*.test.mjs",
|
|
37
|
+
"fix:lockfile": "pnpm install --lockfile-only --ignore-workspace"
|
|
33
38
|
}
|
|
34
39
|
}
|