@dosu/cli 0.20.3 → 0.22.0
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 +1 -1
- package/bin/dosu.js +3386 -2292
- package/package.json +10 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dosu/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.22.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Dosu CLI - Manage MCP servers for AI tools",
|
|
6
6
|
"license": "MIT",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dev:local": "DOSU_DEV=true bun run src/index.ts",
|
|
22
22
|
"build": "bun --env-file=.env.production run scripts/build-compile.ts",
|
|
23
23
|
"build:dev": "bun --env-file=.env.development run scripts/build-compile.ts",
|
|
24
|
-
"build:npm": "bun --env-file=.env.production run scripts/build-npm.ts",
|
|
24
|
+
"build:npm": "DOSU_INSTALL_CHANNEL=npm bun --env-file=.env.production run scripts/build-npm.ts",
|
|
25
25
|
"build:all": "bun --env-file=.env.production run scripts/build-all.ts",
|
|
26
26
|
"test": "bunx vitest run",
|
|
27
27
|
"test:watch": "bunx vitest",
|
|
@@ -32,26 +32,26 @@
|
|
|
32
32
|
"prepack": "bun run build:npm"
|
|
33
33
|
},
|
|
34
34
|
"engines": {
|
|
35
|
-
"node": ">=
|
|
35
|
+
"node": ">=22"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@biomejs/biome": "^2.5.0",
|
|
39
|
-
"@clack/prompts": "^
|
|
40
|
-
"@dosu/api-types": "0.0.
|
|
39
|
+
"@clack/prompts": "^1.6.0",
|
|
40
|
+
"@dosu/api-types": "0.0.11",
|
|
41
41
|
"@semantic-release/changelog": "^6.0.3",
|
|
42
42
|
"@semantic-release/exec": "^7.1.0",
|
|
43
43
|
"@semantic-release/git": "^10.0.1",
|
|
44
|
-
"@trpc/client": "11.
|
|
45
|
-
"@trpc/server": "11.
|
|
44
|
+
"@trpc/client": "11.18.0",
|
|
45
|
+
"@trpc/server": "11.18.0",
|
|
46
46
|
"@types/bun": "^1.3.14",
|
|
47
47
|
"@vitest/coverage-v8": "^4.1.9",
|
|
48
|
-
"commander": "^
|
|
49
|
-
"open": "^
|
|
48
|
+
"commander": "^15.0.0",
|
|
49
|
+
"open": "^11.0.0",
|
|
50
50
|
"picocolors": "^1.1.1",
|
|
51
51
|
"semantic-release": "^25.0.5",
|
|
52
52
|
"superjson": "^2.2.6",
|
|
53
53
|
"typescript": "^6.0.3",
|
|
54
54
|
"vitest": "^4.1.9",
|
|
55
|
-
"write-file-atomic": "^
|
|
55
|
+
"write-file-atomic": "^8.0.0"
|
|
56
56
|
}
|
|
57
57
|
}
|