@knip/mcp 0.0.7 → 0.0.8

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.
@@ -343,8 +343,11 @@ cd packages/knip
343
343
  pnpm create-plugin --name tool
344
344
  ```
345
345
 
346
- This adds source and test files and fixtures to get you started. It also adds
347
- the plugin to the JSON Schema and TypeScript types.
346
+ This adds source and test files and fixtures to get you started. Keep fixtures
347
+ tidy, remove clutter that isn't required to test the plugin properly. E.g. using
348
+ a starterkit, script or wizard often creates more than what we need here.
349
+
350
+ The script adds the plugin to the JSON Schema and type definitions.
348
351
 
349
352
  Run the test for your new plugin using one of the following commands:
350
353
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knip/mcp",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Knip MCP Server",
5
5
  "type": "module",
6
6
  "bin": {
@@ -29,12 +29,12 @@
29
29
  "dependencies": {
30
30
  "@modelcontextprotocol/sdk": "^1.24.3",
31
31
  "zod": "^4.1.11",
32
- "knip": "^5.76.2"
32
+ "knip": "^5.77.0"
33
33
  },
34
34
  "engines": {
35
35
  "node": ">=18.18.0"
36
36
  },
37
37
  "scripts": {
38
- "release": "npm version patch --no-git-tag-version --no-workspaces-update && pnpm publish --access public --no-git-checks"
38
+ "release": "release-it -c ../../.release-it.json"
39
39
  }
40
40
  }