jsrepo 2.0.4 → 2.2.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/dist/index.js +80 -62
- package/dist/index.js.map +1 -1
- package/package.json +6 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jsrepo",
|
|
3
3
|
"description": "A CLI to add shared code from remote repositories.",
|
|
4
|
-
"version": "2.0
|
|
4
|
+
"version": "2.2.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://jsrepo.dev",
|
|
7
7
|
"author": {
|
|
@@ -56,6 +56,7 @@
|
|
|
56
56
|
"@biomejs/js-api": "^0.7.1",
|
|
57
57
|
"@biomejs/wasm-nodejs": "^1.9.4",
|
|
58
58
|
"@clack/prompts": "^0.10.1",
|
|
59
|
+
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
59
60
|
"boxen": "^8.0.1",
|
|
60
61
|
"chalk": "^5.4.1",
|
|
61
62
|
"commander": "^13.1.0",
|
|
@@ -88,13 +89,15 @@
|
|
|
88
89
|
"scripts": {
|
|
89
90
|
"start": "tsup --silent && node ./dist/index.js",
|
|
90
91
|
"build": "tsup",
|
|
92
|
+
"generate:reference": "pnpm dlx tsx ./scripts/generate-reference.ts ",
|
|
91
93
|
"run:dev": "node ./dist/index.js",
|
|
92
94
|
"format": "biome format --write",
|
|
93
95
|
"lint": "biome lint --write",
|
|
94
96
|
"check": "biome check && pnpm check:types",
|
|
95
97
|
"test": "vitest",
|
|
96
98
|
"check:types": "tsc",
|
|
97
|
-
"changeset:version": "changeset version && pnpm format",
|
|
98
|
-
"ci:release": "pnpm build && changeset publish"
|
|
99
|
+
"changeset:version": "changeset version && pnpm generate:reference && pnpm format",
|
|
100
|
+
"ci:release": "pnpm build && changeset publish",
|
|
101
|
+
"mcp:inspector": "pnpm build && pnpm dlx @modelcontextprotocol/inspector node ./dist/index.js mcp"
|
|
99
102
|
}
|
|
100
103
|
}
|