@agilebot/eslint-plugin 0.8.10 → 0.9.1
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 +146 -214
 - package/package.json +6 -7
 - package/dist/index.mjs +0 -2763
 
    
        package/package.json
    CHANGED
    
    | 
         @@ -1,15 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            {
         
     | 
| 
       2 
2 
     | 
    
         
             
              "name": "@agilebot/eslint-plugin",
         
     | 
| 
       3 
     | 
    
         
            -
              "version": "0. 
     | 
| 
      
 3 
     | 
    
         
            +
              "version": "0.9.1",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "type": "module",
         
     | 
| 
       4 
5 
     | 
    
         
             
              "description": "Agilebot's ESLint plugin",
         
     | 
| 
       5 
6 
     | 
    
         
             
              "main": "./dist/index.js",
         
     | 
| 
       6 
     | 
    
         
            -
              "module": "./dist/index.mjs",
         
     | 
| 
       7 
7 
     | 
    
         
             
              "types": "./dist/index.d.ts",
         
     | 
| 
       8 
8 
     | 
    
         
             
              "exports": {
         
     | 
| 
       9 
9 
     | 
    
         
             
                ".": {
         
     | 
| 
       10 
10 
     | 
    
         
             
                  "types": "./dist/index.d.ts",
         
     | 
| 
       11 
     | 
    
         
            -
                  "import": "./dist/index. 
     | 
| 
       12 
     | 
    
         
            -
                  "require": "./dist/index.js"
         
     | 
| 
      
 11 
     | 
    
         
            +
                  "import": "./dist/index.js"
         
     | 
| 
       13 
12 
     | 
    
         
             
                }
         
     | 
| 
       14 
13 
     | 
    
         
             
              },
         
     | 
| 
       15 
14 
     | 
    
         
             
              "license": "MIT",
         
     | 
| 
         @@ -28,10 +27,10 @@ 
     | 
|
| 
       28 
27 
     | 
    
         
             
              "dependencies": {
         
     | 
| 
       29 
28 
     | 
    
         
             
                "@typescript-eslint/utils": "~8.29.0",
         
     | 
| 
       30 
29 
     | 
    
         
             
                "eslint-plugin-react": "^7.37.2",
         
     | 
| 
       31 
     | 
    
         
            -
                "@agilebot/eslint-utils": "0. 
     | 
| 
      
 30 
     | 
    
         
            +
                "@agilebot/eslint-utils": "0.9.1"
         
     | 
| 
       32 
31 
     | 
    
         
             
              },
         
     | 
| 
       33 
32 
     | 
    
         
             
              "peerDependencies": {
         
     | 
| 
       34 
     | 
    
         
            -
                "eslint": "^ 
     | 
| 
      
 33 
     | 
    
         
            +
                "eslint": "^9.0.0"
         
     | 
| 
       35 
34 
     | 
    
         
             
              },
         
     | 
| 
       36 
35 
     | 
    
         
             
              "files": [
         
     | 
| 
       37 
36 
     | 
    
         
             
                "dist"
         
     | 
| 
         @@ -44,7 +43,7 @@ 
     | 
|
| 
       44 
43 
     | 
    
         
             
                "typescript-eslint": "~8.29.0"
         
     | 
| 
       45 
44 
     | 
    
         
             
              },
         
     | 
| 
       46 
45 
     | 
    
         
             
              "scripts": {
         
     | 
| 
       47 
     | 
    
         
            -
                "build": "tsdown && rollup -c rollup.config. 
     | 
| 
      
 46 
     | 
    
         
            +
                "build": "tsdown && rollup -c rollup.config.js",
         
     | 
| 
       48 
47 
     | 
    
         
             
                "lint": "eslint-agilebot src",
         
     | 
| 
       49 
48 
     | 
    
         
             
                "typecheck": "tsc --noEmit"
         
     | 
| 
       50 
49 
     | 
    
         
             
              }
         
     |