@ghettoddos/eslint-config 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 ADDED
@@ -0,0 +1,99 @@
1
+ {
2
+ "name": "@ghettoddos/eslint-config",
3
+ "type": "module",
4
+ "version": "1.0.0",
5
+ "description": "ghettoDdOS ESLint config",
6
+ "author": "ghettoDdOS <pen.egor2002@gamil.com> (https://github.com/ghettoDdOS/)",
7
+ "license": "MIT",
8
+ "homepage": "https://github.com/ghettoDdOS/eslint-config",
9
+ "keywords": [
10
+ "eslint-config"
11
+ ],
12
+ "exports": {
13
+ ".": "./dist/index.js"
14
+ },
15
+ "main": "./dist/index.js",
16
+ "types": "./dist/index.d.ts",
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "peerDependencies": {
21
+ "@prettier/plugin-xml": "^3.4.1",
22
+ "@unocss/eslint-plugin": ">=0.50.0",
23
+ "eslint": "^9.10.0",
24
+ "eslint-plugin-format": ">=0.1.0"
25
+ },
26
+ "peerDependenciesMeta": {
27
+ "@prettier/plugin-xml": {
28
+ "optional": true
29
+ },
30
+ "@unocss/eslint-plugin": {
31
+ "optional": true
32
+ },
33
+ "eslint-plugin-format": {
34
+ "optional": true
35
+ }
36
+ },
37
+ "dependencies": {
38
+ "@antfu/install-pkg": "^1.0.0",
39
+ "@clack/prompts": "^0.10.0",
40
+ "@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
41
+ "@eslint-react/eslint-plugin": "^1.31.0",
42
+ "@eslint/markdown": "^6.3.0",
43
+ "@stylistic/eslint-plugin": "^4.2.0",
44
+ "@typescript-eslint/eslint-plugin": "^8.26.0",
45
+ "@typescript-eslint/parser": "^8.26.0",
46
+ "eslint-config-flat-gitignore": "^2.1.0",
47
+ "eslint-flat-config-utils": "^2.0.1",
48
+ "eslint-merge-processors": "^2.0.0",
49
+ "eslint-plugin-import-x": "^4.6.1",
50
+ "eslint-plugin-jsonc": "^2.19.1",
51
+ "eslint-plugin-n": "^17.16.2",
52
+ "eslint-plugin-perfectionist": "^4.10.1",
53
+ "eslint-plugin-react-hooks": "^5.2.0",
54
+ "eslint-plugin-react-refresh": "^0.4.19",
55
+ "eslint-plugin-regexp": "^2.7.0",
56
+ "eslint-plugin-toml": "^0.12.0",
57
+ "eslint-plugin-unicorn": "^57.0.0",
58
+ "eslint-plugin-unused-imports": "^4.1.4",
59
+ "eslint-plugin-yml": "^1.17.0",
60
+ "globals": "^16.0.0",
61
+ "jsonc-eslint-parser": "^2.4.0",
62
+ "local-pkg": "^1.1.1",
63
+ "parse-gitignore": "^2.0.0",
64
+ "toml-eslint-parser": "^0.10.0",
65
+ "yaml-eslint-parser": "^1.3.0"
66
+ },
67
+ "devDependencies": {
68
+ "@eslint/config-inspector": "^1.0.2",
69
+ "@prettier/plugin-xml": "^3.4.1",
70
+ "@types/node": "^22.13.10",
71
+ "@unocss/eslint-plugin": "66.1.0-beta.3",
72
+ "bumpp": "^10.0.3",
73
+ "eslint": "^9.22.0",
74
+ "eslint-plugin-format": "^1.0.1",
75
+ "eslint-typegen": "^2.0.0",
76
+ "lint-staged": "^15.4.3",
77
+ "simple-git-hooks": "^2.11.1",
78
+ "tsup": "^8.4.0",
79
+ "tsx": "^4.19.3",
80
+ "typescript": "^5.8.2"
81
+ },
82
+ "simple-git-hooks": {
83
+ "pre-commit": "npx lint-staged"
84
+ },
85
+ "lint-staged": {
86
+ "*": "eslint --fix"
87
+ },
88
+ "scripts": {
89
+ "build": "pnpm typegen && tsup --clean --dts",
90
+ "stub": "tsup",
91
+ "dev": "pnpx @eslint/config-inspector --config eslint.config.ts",
92
+ "build:inspector": "pnpm build && pnpx @eslint/config-inspector build",
93
+ "watch": "tsup --watch",
94
+ "lint": "eslint",
95
+ "typegen": "tsx scripts/typegen.ts",
96
+ "release": "bumpp && pnpm publish",
97
+ "typecheck": "tsc --noEmit"
98
+ }
99
+ }