@saasmakers/eslint 0.1.12 → 0.1.13

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/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@saasmakers/eslint",
3
3
  "type": "module",
4
- "version": "0.1.12",
4
+ "version": "0.1.13",
5
5
  "private": false,
6
- "description": "Shared ESLint config for SaaS Makers projects",
6
+ "description": "Shared ESLint config and rules for SaaS Makers projects",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
@@ -16,34 +16,45 @@
16
16
  "import": "./dist/index.mjs",
17
17
  "require": "./dist/index.cjs"
18
18
  },
19
- "./eslint.config.mjs": "./dist/eslint.config.mjs"
19
+ "./config": {
20
+ "types": "./dist/eslint.config.d.ts",
21
+ "import": "./dist/eslint.config.mjs",
22
+ "require": "./dist/eslint.config.cjs"
23
+ }
20
24
  },
21
25
  "main": "dist/index.cjs",
26
+ "module": "./dist/index.mjs",
22
27
  "types": "dist/index.d.ts",
23
28
  "publishConfig": {
24
29
  "access": "public"
25
30
  },
26
31
  "files": [
27
- "dist/*"
32
+ "dist"
28
33
  ],
29
34
  "peerDependencies": {
30
35
  "eslint": "^9.0.0"
31
36
  },
32
37
  "dependencies": {
33
- "@antfu/eslint-config": "6.2.0",
34
- "@typescript-eslint/utils": "8.49.0",
35
- "@unocss/eslint-config": "66.5.10-beta.1",
36
- "eslint-plugin-package-json": "0.85.0",
37
- "eslint-plugin-storybook": "9.1.16"
38
+ "@nuxt/eslint-config": "1.12.1",
39
+ "@unocss/eslint-config": "66.5.12",
40
+ "eslint-plugin-perfectionist": "5.1.0",
41
+ "eslint-plugin-storybook": "9.1.16",
42
+ "eslint-plugin-turbo": "2.7.2",
43
+ "eslint-plugin-vue": "10.6.2",
44
+ "typescript-eslint": "8.51.0",
45
+ "@saasmakers/config": "0.1.21"
38
46
  },
39
47
  "devDependencies": {
48
+ "@eslint/config-inspector": "1.4.2",
40
49
  "@types/estree": "1.0.8",
41
50
  "eslint": "9.39.2",
42
51
  "typescript": "5.9.3",
43
- "@saasmakers/config": "0.1.20"
52
+ "vue-eslint-parser": "10.2.0"
44
53
  },
45
54
  "scripts": {
46
55
  "build": "unbuild",
56
+ "build:inspector": "pnpm build && pnpm dlx @eslint/config-inspector build",
57
+ "dev": "pnpm dlx @eslint/config-inspector --config eslint.config.mts --port 3102 --open false",
47
58
  "lint": "eslint . --max-warnings=0",
48
59
  "typecheck": "tsc --noEmit"
49
60
  }