@infernodesign/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,110 @@
1
+ {
2
+ "name": "@infernodesign/eslint-config",
3
+ "description": "ESLint config for Inferno Design.",
4
+ "version": "1.0.0",
5
+ "type": "module",
6
+ "author": "Inferno Design <support@infernodesign.com>",
7
+ "license": "MIT",
8
+ "homepage": "https://github.com/infernodesign/tooling",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/infernodesign/tooling.git",
12
+ "directory": "tooling/eslint"
13
+ },
14
+ "bugs": "https://github.com/infernodesign/tooling/issues",
15
+ "keywords": [
16
+ "eslint",
17
+ "lint",
18
+ "linter",
19
+ "config"
20
+ ],
21
+ "exports": {
22
+ ".": "./dist/index.js"
23
+ },
24
+ "main": "./dist/index.js",
25
+ "types": "./dist/index.d.ts",
26
+ "files": [
27
+ "LICENSE",
28
+ "README.md",
29
+ "dist",
30
+ "package.json"
31
+ ],
32
+ "publishConfig": {
33
+ "registry": "https://registry.npmjs.org"
34
+ },
35
+ "dependencies": {
36
+ "@antfu/install-pkg": "1.1.0",
37
+ "@clack/prompts": "0.11.0",
38
+ "@eslint-community/eslint-plugin-eslint-comments": "4.5.0",
39
+ "@eslint-react/eslint-plugin": "2.0.6",
40
+ "@eslint/compat": "1.4.0",
41
+ "@eslint/markdown": "7.4.0",
42
+ "@next/eslint-plugin-next": "15.5.4",
43
+ "@prettier/plugin-xml": "3.4.2",
44
+ "@stylistic/eslint-plugin": "5.4.0",
45
+ "@typescript-eslint/eslint-plugin": "8.46.0",
46
+ "@typescript-eslint/parser": "8.46.0",
47
+ "@vitest/eslint-plugin": "1.3.16",
48
+ "clack": "0.1.0",
49
+ "eslint": "9.37.0",
50
+ "eslint-config-flat-gitignore": "2.1.0",
51
+ "eslint-flat-config-utils": "2.1.4",
52
+ "eslint-merge-processors": "2.0.0",
53
+ "eslint-plugin-antfu": "3.1.1",
54
+ "eslint-plugin-better-tailwindcss": "3.7.9",
55
+ "eslint-plugin-command": "3.3.1",
56
+ "eslint-plugin-file-progress": "3.0.2",
57
+ "eslint-plugin-format": "1.0.2",
58
+ "eslint-plugin-import-x": "4.16.1",
59
+ "eslint-plugin-jsdoc": "61.1.0",
60
+ "eslint-plugin-jsonc": "2.21.0",
61
+ "eslint-plugin-jsx-a11y": "6.10.2",
62
+ "eslint-plugin-n": "17.23.1",
63
+ "eslint-plugin-no-only-tests": "3.3.0",
64
+ "eslint-plugin-oxlint": "1.22.0",
65
+ "eslint-plugin-perfectionist": "4.15.1",
66
+ "eslint-plugin-pnpm": "1.2.0",
67
+ "eslint-plugin-react-hooks": "7.0.0",
68
+ "eslint-plugin-react-refresh": "0.4.23",
69
+ "eslint-plugin-regexp": "2.10.0",
70
+ "eslint-plugin-storybook": "9.1.10",
71
+ "eslint-plugin-toml": "0.12.0",
72
+ "eslint-plugin-unicorn": "61.0.2",
73
+ "eslint-plugin-unused-imports": "4.2.0",
74
+ "eslint-plugin-yml": "1.19.0",
75
+ "globals": "16.4.0",
76
+ "jiti": "2.6.1",
77
+ "jsonc-eslint-parser": "2.4.1",
78
+ "local-pkg": "1.1.2",
79
+ "parse-gitignore": "2.0.0",
80
+ "toml-eslint-parser": "0.10.0",
81
+ "typescript": "5.9.3",
82
+ "vitest": "3.2.4",
83
+ "yaml-eslint-parser": "1.3.0"
84
+ },
85
+ "devDependencies": {
86
+ "@eslint/config-inspector": "1.3.0",
87
+ "@types/fs-extra": "11.0.4",
88
+ "@types/node": "24.7.2",
89
+ "@types/prompts": "2.4.9",
90
+ "@types/yargs": "17.0.33",
91
+ "eslint": "9.37.0",
92
+ "eslint-typegen": "2.3.0",
93
+ "execa": "9.6.0",
94
+ "fast-glob": "3.3.3",
95
+ "fs-extra": "11.3.2",
96
+ "tsdown": "0.15.6",
97
+ "tsx": "4.20.6",
98
+ "@infernodesign/typescript-config": "1.0.0"
99
+ },
100
+ "peerDependencies": {
101
+ "eslint": "^9.37.0"
102
+ },
103
+ "scripts": {
104
+ "build": "pnpm run typegen && tsdown --clean --dts",
105
+ "build:inspect": "pnpm run build && pnpx @eslint/config-inspector build",
106
+ "dev": "tsdown --watch",
107
+ "typecheck": "tsc --noEmit --emitDeclarationOnly false",
108
+ "typegen": "tsx scripts/typegen.ts"
109
+ }
110
+ }