@a16njs/plugin-cursor 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
@@ -107,7 +107,3 @@ console.log(`Found ${result.items.length} rules`);
107
107
  // Emit to Cursor format
108
108
  await cursorPlugin.emit(result.items, './my-project');
109
109
  ```
110
-
111
- ## License
112
-
113
- MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a16njs/plugin-cursor",
3
- "version": "0.0.1",
3
+ "version": "0.1.0",
4
4
  "description": "Cursor IDE 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",