@a16njs/plugin-claude 0.0.1 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +0 -4
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -121,7 +121,3 @@ console.log(`Found ${result.items.length} items`);
121
121
  // Emit to Claude format
122
122
  await claudePlugin.emit(result.items, './my-project');
123
123
  ```
124
-
125
- ## License
126
-
127
- MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a16njs/plugin-claude",
3
- "version": "0.0.1",
3
+ "version": "0.1.0",
4
4
  "description": "Claude Code plugin for a16n",
5
5
  "license": "AGPL-3.0",
6
6
  "author": "Texarkanine",
@@ -29,7 +29,9 @@
29
29
  "import": "./dist/index.js"
30
30
  }
31
31
  },
32
- "files": ["dist"],
32
+ "files": [
33
+ "dist"
34
+ ],
33
35
  "scripts": {
34
36
  "build": "tsc",
35
37
  "clean": "rimraf dist *.tsbuildinfo",