@plumeria/eslint-plugin 0.2.6 → 0.4.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.
@@ -3,7 +3,7 @@
3
3
  ESLint plugin for Plumeria.
4
4
  Below are the available rules and the recommended configuration.
5
5
 
6
- ## Recommended Configuration
6
+ ## Recommended configuration
7
7
 
8
8
  The `plugin:@plumeria/recommended` config enables the following:
9
9
 
package/package.json CHANGED
@@ -1,29 +1,25 @@
1
1
  {
2
2
  "name": "@plumeria/eslint-plugin",
3
- "version": "0.2.6",
4
- "description": "Zero-runtime, expressive CSS-in-JS library for TypeScript.",
5
- "repository": "github:zss-in-js/plumeria",
3
+ "version": "0.4.0",
4
+ "description": "Plumeria ESLint plugin",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/zss-in-js/plumeria.git",
8
+ "directory": "packages/eslint-plugin"
9
+ },
6
10
  "license": "MIT",
7
- "keywords": [
8
- "css",
9
- "css-in-js",
10
- "plumeria",
11
- "react",
12
- "next",
13
- "vite"
14
- ],
15
11
  "main": "lib/index.js",
16
12
  "types": "lib/index.d.ts",
17
13
  "files": [
18
14
  "lib/"
19
15
  ],
16
+ "scripts": {
17
+ "build": "echo 'No build necessary'"
18
+ },
20
19
  "devDependencies": {
21
20
  "eslint": "^9.15.0"
22
21
  },
23
22
  "publishConfig": {
24
23
  "access": "public"
25
- },
26
- "scripts": {
27
- "build": "echo 'No build necessary'"
28
24
  }
29
- }
25
+ }