@saasmakers/eslint 0.1.17 → 0.1.19
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/eslint.config.cjs +12895 -15761
- package/dist/eslint.config.mjs +12875 -15745
- package/dist/index.cjs +1150 -4
- package/dist/index.d.cts +2 -5178
- package/dist/index.d.mts +2 -5178
- package/dist/index.d.ts +2 -5178
- package/dist/index.mjs +1153 -3
- package/package.json +18 -10
- package/dist/shared/eslint.D22h5c0B.mjs +0 -15272
- package/dist/shared/eslint.qiMA7j27.cjs +0 -15283
package/package.json
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saasmakers/eslint",
|
|
3
|
-
"
|
|
4
|
-
"version": "0.1.17",
|
|
3
|
+
"version": "0.1.19",
|
|
5
4
|
"private": false,
|
|
6
5
|
"description": "Shared ESLint config and rules for SaaS Makers projects",
|
|
7
|
-
"license": "MIT",
|
|
8
6
|
"repository": {
|
|
9
7
|
"type": "git",
|
|
10
8
|
"url": "git+https://github.com/saasmakers/saasmakers-turborepo.git",
|
|
11
9
|
"directory": "packages/eslint"
|
|
12
10
|
},
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"author": "SaaS Makers",
|
|
13
|
+
"sideEffects": false,
|
|
14
|
+
"type": "module",
|
|
13
15
|
"exports": {
|
|
14
16
|
".": {
|
|
15
17
|
"types": "./dist/index.d.ts",
|
|
@@ -25,24 +27,24 @@
|
|
|
25
27
|
"main": "dist/index.cjs",
|
|
26
28
|
"module": "./dist/index.mjs",
|
|
27
29
|
"types": "dist/index.d.ts",
|
|
28
|
-
"publishConfig": {
|
|
29
|
-
"access": "public"
|
|
30
|
-
},
|
|
31
30
|
"files": [
|
|
32
31
|
"dist"
|
|
33
32
|
],
|
|
34
|
-
"peerDependencies": {
|
|
35
|
-
"eslint": "^9.0.0"
|
|
36
|
-
},
|
|
37
33
|
"dependencies": {
|
|
34
|
+
"@eslint/js": "9.39.2",
|
|
38
35
|
"@nuxt/eslint-config": "1.12.1",
|
|
36
|
+
"@typescript-eslint/utils": "8.51.0",
|
|
39
37
|
"@unocss/eslint-config": "66.5.12",
|
|
38
|
+
"eslint-plugin-n": "17.23.1",
|
|
39
|
+
"eslint-plugin-package-json": "0.87.0",
|
|
40
40
|
"eslint-plugin-perfectionist": "5.1.0",
|
|
41
|
+
"eslint-plugin-pnpm": "1.4.3",
|
|
41
42
|
"eslint-plugin-storybook": "9.1.16",
|
|
42
43
|
"eslint-plugin-turbo": "2.7.2",
|
|
44
|
+
"eslint-plugin-unicorn": "62.0.0",
|
|
43
45
|
"eslint-plugin-vue": "10.6.2",
|
|
44
46
|
"typescript-eslint": "8.51.0",
|
|
45
|
-
"@saasmakers/config": "0.1.
|
|
47
|
+
"@saasmakers/config": "0.1.24"
|
|
46
48
|
},
|
|
47
49
|
"devDependencies": {
|
|
48
50
|
"@eslint/config-inspector": "1.4.2",
|
|
@@ -51,6 +53,12 @@
|
|
|
51
53
|
"typescript": "5.9.3",
|
|
52
54
|
"vue-eslint-parser": "10.2.0"
|
|
53
55
|
},
|
|
56
|
+
"peerDependencies": {
|
|
57
|
+
"eslint": "^9.0.0"
|
|
58
|
+
},
|
|
59
|
+
"publishConfig": {
|
|
60
|
+
"access": "public"
|
|
61
|
+
},
|
|
54
62
|
"scripts": {
|
|
55
63
|
"build": "unbuild",
|
|
56
64
|
"build:inspector": "pnpm build && pnpm dlx @eslint/config-inspector build",
|