@dosu/cli 0.1.7 → 0.3.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/bin/dosu.js +506 -379
- package/package.json +12 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dosu/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Dosu CLI - Manage MCP servers for AI tools",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,20 +19,28 @@
|
|
|
19
19
|
"scripts": {
|
|
20
20
|
"dev": "bun run src/index.ts",
|
|
21
21
|
"dev:local": "DOSU_DEV=true bun run src/index.ts",
|
|
22
|
-
"build": "bun build --compile src/index.ts --outfile bin/dosu",
|
|
23
|
-
"build:npm": "bun run scripts/build-npm.ts",
|
|
24
|
-
"build:all": "bun run scripts/build-all.ts",
|
|
22
|
+
"build": "bun --env-file=.env.production build --compile --env=DOSU_* --env=SUPABASE_* src/index.ts --outfile bin/dosu",
|
|
23
|
+
"build:npm": "bun --env-file=.env.production run scripts/build-npm.ts",
|
|
24
|
+
"build:all": "bun --env-file=.env.production run scripts/build-all.ts",
|
|
25
25
|
"test": "bunx vitest run",
|
|
26
26
|
"test:watch": "bunx vitest",
|
|
27
27
|
"typecheck": "bunx tsc --noEmit",
|
|
28
|
+
"lint": "bunx biome lint .",
|
|
29
|
+
"format": "bunx biome format .",
|
|
30
|
+
"check": "bunx biome check .",
|
|
28
31
|
"prepack": "bun run build:npm"
|
|
29
32
|
},
|
|
30
33
|
"engines": {
|
|
31
34
|
"node": ">=18"
|
|
32
35
|
},
|
|
33
36
|
"devDependencies": {
|
|
37
|
+
"@biomejs/biome": "^2.4.9",
|
|
38
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
39
|
+
"@semantic-release/exec": "^7.1.0",
|
|
40
|
+
"@semantic-release/git": "^10.0.1",
|
|
34
41
|
"@types/bun": "^1.3.11",
|
|
35
42
|
"@vitest/coverage-v8": "^3.2.0",
|
|
43
|
+
"semantic-release": "^25.0.3",
|
|
36
44
|
"typescript": "^5.8.3",
|
|
37
45
|
"vitest": "^3.1.1"
|
|
38
46
|
},
|