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