@fabdeh/eslint-config 0.0.1

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 ADDED
@@ -0,0 +1,140 @@
1
+ {
2
+ "name": "@fabdeh/eslint-config",
3
+ "type": "module",
4
+ "version": "0.0.1",
5
+ "description": "My personal eslint config preset",
6
+ "homepage": "https://github.com/FabienDehopre/eslint-config",
7
+ "keywords": [
8
+ "eslint-config"
9
+ ],
10
+ "author": "Fabien Dehopré <fabien@dehopre.dev> (https://github.com/FabienDehopre)",
11
+ "license": "MIT",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/FabienDehopre/eslint-config.git"
15
+ },
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "packageManager": "pnpm@10.0.0",
20
+ "exports": {
21
+ ".": {
22
+ "require": {
23
+ "types": "./dist/index.d.cts",
24
+ "default": "./dist/index.cjs"
25
+ },
26
+ "import": {
27
+ "types": "./dist/index.d.ts",
28
+ "default": "./dist/index.js"
29
+ }
30
+ }
31
+ },
32
+ "main": "./dist/index.js",
33
+ "types": "./dist/index.d.ts",
34
+ "files": [
35
+ "dist"
36
+ ],
37
+ "scripts": {
38
+ "build": "tsup && fix-tsup-cjs",
39
+ "build:inspector": "pnpm build && pnpm dlx @eslint/config-inspector build",
40
+ "dev": "pnpm dlx @eslint/config-inspector --config eslint.config.ts",
41
+ "preinstall": "npx only-allow pnpm",
42
+ "prepare": "is-ci || simple-git-hooks",
43
+ "commit": "git-cz",
44
+ "lint": "eslint . --fix",
45
+ "lint:check": "eslint . --quiet",
46
+ "format": "prettier . --write",
47
+ "format:check": "prettier . --check",
48
+ "prepack": "pnpm build",
49
+ "release": "bumpp && npm publish",
50
+ "typecheck": "tsc --noEmit"
51
+ },
52
+ "peerDependencies": {
53
+ "@ngrx/eslint-plugin": "19.0.0",
54
+ "@vitest/eslint-plugin": "^1.1.25",
55
+ "eslint": "^9.10.0",
56
+ "eslint-plugin-jest": "^28.11.0",
57
+ "eslint-plugin-jest-dom": "^5.5.0",
58
+ "eslint-plugin-tailwindcss": "^3.18.0",
59
+ "eslint-plugin-testing-library": "^7.1.1"
60
+ },
61
+ "peerDependenciesMeta": {
62
+ "@ngrx/eslint-plugin": {
63
+ "optional": true
64
+ },
65
+ "@vitest/eslint-plugin": {
66
+ "optional": true
67
+ },
68
+ "eslint-plugin-jest": {
69
+ "optional": true
70
+ },
71
+ "eslint-plugin-jest-dom": {
72
+ "optional": true
73
+ },
74
+ "eslint-plugin-tailwindcss": {
75
+ "optional": true
76
+ },
77
+ "eslint-plugin-testing-library": {
78
+ "optional": true
79
+ }
80
+ },
81
+ "dependencies": {
82
+ "@angular-eslint/utils": "^19.0.2",
83
+ "@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
84
+ "@eslint/js": "^9.18.0",
85
+ "@nx/eslint-plugin": "^20.3.2",
86
+ "@typescript-eslint/eslint-plugin": "^8.20.0",
87
+ "@typescript-eslint/parser": "^8.20.0",
88
+ "@typescript-eslint/utils": "^8.20.0",
89
+ "angular-eslint": "^19.0.2",
90
+ "eslint-config-flat-gitignore": "^1.0.0",
91
+ "eslint-flat-config-utils": "^1.0.0",
92
+ "eslint-plugin-import-x": "^4.6.1",
93
+ "eslint-plugin-jsdoc": "^50.6.2",
94
+ "eslint-plugin-perfectionist": "^4.6.0",
95
+ "eslint-plugin-prefer-arrow-functions": "^3.6.2",
96
+ "eslint-plugin-unicorn": "^56.0.1",
97
+ "eslint-plugin-unused-imports": "^4.1.4",
98
+ "globals": "^15.14.0",
99
+ "local-pkg": "^1.0.0",
100
+ "typescript-eslint": "^8.20.0"
101
+ },
102
+ "devDependencies": {
103
+ "@commitlint/cli": "^19.6.1",
104
+ "@commitlint/config-conventional": "^19.6.0",
105
+ "@commitlint/cz-commitlint": "^19.6.1",
106
+ "@ngrx/eslint-plugin": "^19.0.0",
107
+ "@stylistic/eslint-plugin": "^2.13.0",
108
+ "@vitest/eslint-plugin": "^1.1.25",
109
+ "bumpp": "^9.10.1",
110
+ "commitizen": "^4.3.1",
111
+ "eslint": "^9.18.0",
112
+ "eslint-config-prettier": "^10.0.1",
113
+ "eslint-plugin-jest": "^28.11.0",
114
+ "eslint-plugin-jest-dom": "^5.5.0",
115
+ "eslint-plugin-tailwindcss": "^3.18.0",
116
+ "eslint-plugin-testing-library": "^7.1.1",
117
+ "fix-tsup-cjs": "^1.2.0",
118
+ "inquirer": "^9.3.7",
119
+ "is-ci": "^4.1.0",
120
+ "jiti": "^2.4.2",
121
+ "nano-staged": "^0.8.0",
122
+ "prettier": "^3.4.2",
123
+ "simple-git-hooks": "^2.11.1",
124
+ "tsup": "^8.3.5",
125
+ "typescript": "^5.7.3"
126
+ },
127
+ "simple-git-hooks": {
128
+ "pre-commit": "pnpm nano-staged",
129
+ "commit-msg": "pnpm commitlint --edit ${1}"
130
+ },
131
+ "nano-staged": {
132
+ "*": "prettier --ignore-unknown --write",
133
+ "*.{js,ts}": "eslint --fix"
134
+ },
135
+ "config": {
136
+ "commitizen": {
137
+ "path": "@commitlint/cz-commitlint"
138
+ }
139
+ }
140
+ }