@lntvow/eslint-plugin 9.18.0 → 9.18.4

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.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  const _package = require('./package.json.cjs');
4
- const newlineBeforeDescribeTest = require('./rules/newline-before-describe-test.cjs');
4
+ const newlineBeforeDescribeTest = require('./src/rules/newline-before-describe-test.cjs');
5
5
 
6
6
  const plugin = {
7
7
  meta: {
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { name, version } from './package.json.mjs';
2
- import { newlineBeforeDescribeTest } from './rules/newline-before-describe-test.mjs';
2
+ import { newlineBeforeDescribeTest } from './src/rules/newline-before-describe-test.mjs';
3
3
 
4
4
  const plugin = {
5
5
  meta: {
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  const name = "@lntvow/eslint-plugin";
4
- const version = "9.18.0";
4
+ const version = "9.18.4";
5
5
 
6
6
  exports.name = name;
7
7
  exports.version = version;
@@ -1,4 +1,4 @@
1
1
  const name = "@lntvow/eslint-plugin";
2
- const version = "9.18.0";
2
+ const version = "9.18.4";
3
3
 
4
4
  export { name, version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lntvow/eslint-plugin",
3
- "version": "9.18.0",
3
+ "version": "9.18.4",
4
4
  "description": "eslint-plugin",
5
5
  "type": "module",
6
6
  "author": "lntvow",
@@ -15,11 +15,15 @@
15
15
  "main": "./dist/index.cjs",
16
16
  "module": "./dist/index.mjs",
17
17
  "types": "./dist/index.d.ts",
18
- "dependencies": {
19
- "eslint": "^9.17.0"
18
+ "exports": {
19
+ ".": {
20
+ "types": "./dist/index.d.ts",
21
+ "import": "./dist/index.mjs",
22
+ "require": "./dist/index.cjs"
23
+ }
20
24
  },
21
- "devDependencies": {
22
- "unbuild": "^2.0.0"
25
+ "peerDependencies": {
26
+ "eslint": ">=9.0.0"
23
27
  },
24
28
  "scripts": {
25
29
  "dev": "pnpm unbuild --format esm --watch",
File without changes
File without changes