zeno-config 0.1.0 → 1.0.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.
- package/package.json +87 -88
package/package.json
CHANGED
|
@@ -1,89 +1,88 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
}
|
|
2
|
+
"name": "zeno-config",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Preconfigured and opinionated ESLint, Prettier, and TypeScript setup",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"engines": {
|
|
7
|
+
"node": ">=20"
|
|
8
|
+
},
|
|
9
|
+
"exports": {
|
|
10
|
+
"./eslint": {
|
|
11
|
+
"types": "./src/eslint/index.d.ts",
|
|
12
|
+
"default": "./src/eslint/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./prettier": {
|
|
15
|
+
"types": "./src/prettier.d.ts",
|
|
16
|
+
"default": "./src/prettier.js"
|
|
17
|
+
},
|
|
18
|
+
"./tsconfig": "./src/tsconfig.base.json",
|
|
19
|
+
"./tsconfig-react": "./src/tsconfig.react.json",
|
|
20
|
+
"./extensions": {
|
|
21
|
+
"types": "./src/extensions.d.ts",
|
|
22
|
+
"default": "./src/extensions.js"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"src/**"
|
|
27
|
+
],
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"@eslint/js": "^9.39.2",
|
|
30
|
+
"@stylistic/eslint-plugin": "^5.6.1",
|
|
31
|
+
"eslint": "^9.39.2",
|
|
32
|
+
"eslint-config-prettier": "^10.1.8",
|
|
33
|
+
"eslint-plugin-import-x": "^4.16.1",
|
|
34
|
+
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
35
|
+
"eslint-plugin-n": "^17.23.1",
|
|
36
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
37
|
+
"eslint-plugin-react": "^7.37.5",
|
|
38
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
39
|
+
"eslint-plugin-react-you-might-not-need-an-effect": "^0.7.0",
|
|
40
|
+
"eslint-plugin-unicorn": "^62.0.0",
|
|
41
|
+
"prettier": "^3.7.4",
|
|
42
|
+
"typescript": "^5.9.3",
|
|
43
|
+
"typescript-eslint": "^8.50.1"
|
|
44
|
+
},
|
|
45
|
+
"peerDependenciesMeta": {
|
|
46
|
+
"eslint-plugin-jsx-a11y": {
|
|
47
|
+
"optional": true
|
|
48
|
+
},
|
|
49
|
+
"eslint-plugin-react": {
|
|
50
|
+
"optional": true
|
|
51
|
+
},
|
|
52
|
+
"eslint-plugin-react-hooks": {
|
|
53
|
+
"optional": true
|
|
54
|
+
},
|
|
55
|
+
"eslint-plugin-react-you-might-not-need-an-effect": {
|
|
56
|
+
"optional": true
|
|
57
|
+
},
|
|
58
|
+
"typescript": {
|
|
59
|
+
"optional": true
|
|
60
|
+
},
|
|
61
|
+
"typescript-eslint": {
|
|
62
|
+
"optional": true
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@eslint/js": "9.39.2",
|
|
67
|
+
"@stylistic/eslint-plugin": "5.6.1",
|
|
68
|
+
"eslint": "9.39.2",
|
|
69
|
+
"eslint-config-prettier": "10.1.8",
|
|
70
|
+
"eslint-plugin-import-x": "4.16.1",
|
|
71
|
+
"eslint-plugin-jsx-a11y": "6.10.2",
|
|
72
|
+
"eslint-plugin-n": "17.23.1",
|
|
73
|
+
"eslint-plugin-prettier": "5.5.4",
|
|
74
|
+
"eslint-plugin-react": "7.37.5",
|
|
75
|
+
"eslint-plugin-react-hooks": "7.0.1",
|
|
76
|
+
"eslint-plugin-react-you-might-not-need-an-effect": "0.7.0",
|
|
77
|
+
"eslint-plugin-unicorn": "62.0.0",
|
|
78
|
+
"prettier": "3.7.4",
|
|
79
|
+
"typescript": "5.9.3",
|
|
80
|
+
"typescript-eslint": "8.50.1"
|
|
81
|
+
},
|
|
82
|
+
"dependencies": {
|
|
83
|
+
"globals": "16.5.0"
|
|
84
|
+
},
|
|
85
|
+
"scripts": {
|
|
86
|
+
"inspect": "pnpm dlx eslint --inspect-config"
|
|
87
|
+
}
|
|
88
|
+
}
|