@biscuittin/eslint-config 0.0.2

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,93 @@
1
+ {
2
+ "name": "@biscuittin/eslint-config",
3
+ "type": "module",
4
+ "version": "0.0.2",
5
+ "description": "A collection of ESLint configurations for Biscuit Tin projects.",
6
+ "author": "Biscuit Tin <opensource@biscuitt.in>",
7
+ "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/BiscuitTin/eslint-config.git",
11
+ "directory": "packages/eslint-config"
12
+ },
13
+ "bugs": "https://github.com/BiscuitTin/eslint-config/issues",
14
+ "exports": {
15
+ "./package.json": "./package.json",
16
+ ".": {
17
+ "@biscuittin/eslint-config/__source__": "./src/index.ts",
18
+ "require": "./dist/index.cjs",
19
+ "default": "./dist/index.js"
20
+ }
21
+ },
22
+ "publishConfig": {
23
+ "provenance": true
24
+ },
25
+ "peerDependencies": {
26
+ "@typescript-eslint/parser": ">=8.17.0",
27
+ "dprint": ">=0.47.0",
28
+ "eslint": ">=9.15.0"
29
+ },
30
+ "peerDependenciesMeta": {
31
+ "@typescript-eslint/parser": {
32
+ "optional": true
33
+ },
34
+ "dprint": {
35
+ "optional": true
36
+ },
37
+ "eslint": {
38
+ "optional": true
39
+ }
40
+ },
41
+ "dependencies": {
42
+ "@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
43
+ "@eslint-react/eslint-plugin": "^1.20.1",
44
+ "@eslint-sukka/eslint-plugin-react-jsx-a11y": "^6.13.0",
45
+ "@eslint/js": "^9.17.0",
46
+ "@eslint/json": "^0.9.0",
47
+ "@next/eslint-plugin-next": "^15.1.1",
48
+ "@package-json/types": "^0.0.11",
49
+ "@stylistic/eslint-plugin-jsx": "^2.12.1",
50
+ "eslint-config-flat-gitignore": "^1.0.0",
51
+ "eslint-flat-config-utils": "^1.0.0",
52
+ "eslint-import-resolver-typescript": "^3.7.0",
53
+ "eslint-plugin-antfu": "^2.7.0",
54
+ "eslint-plugin-autofix": "^2.2.0",
55
+ "eslint-plugin-format": "^1.0.1",
56
+ "eslint-plugin-import-x": "^4.5.1",
57
+ "eslint-plugin-jsonc": "^2.18.2",
58
+ "eslint-plugin-n": "^17.15.0",
59
+ "eslint-plugin-perfectionist": "^4.3.0",
60
+ "eslint-plugin-react-compiler": "19.0.0-beta-63e3235-20250105",
61
+ "eslint-plugin-react-hooks": "^5.1.0",
62
+ "eslint-plugin-react-prefer-function-component": "^3.3.0",
63
+ "eslint-plugin-react-refresh": "^0.4.16",
64
+ "eslint-plugin-regexp": "^2.7.0",
65
+ "eslint-plugin-tailwindcss": "^3.17.5",
66
+ "eslint-plugin-unicorn": "^56.0.1",
67
+ "eslint-plugin-unused-imports": "^4.1.4",
68
+ "find-up": "^7.0.0",
69
+ "globals": "^15.14.0",
70
+ "jsonc-eslint-parser": "^2.4.0",
71
+ "local-pkg": "^1.0.0",
72
+ "typescript-eslint": "^8.18.1"
73
+ },
74
+ "scripts": {
75
+ "build:inspector": "eslint-config-inspector build --config eslint-inspector.config.ts",
76
+ "dev": "eslint-config-inspector --config eslint-inspector.config.ts",
77
+ "prepublish": "jiek build --noMin && jiek"
78
+ },
79
+ "typesVersions": {
80
+ "<5.0": {
81
+ "*": [
82
+ "*",
83
+ "./*",
84
+ "./*/index.d.ts",
85
+ "./*/index.d.mts",
86
+ "./*/index.d.cts"
87
+ ]
88
+ }
89
+ },
90
+ "main": "./dist/index.cjs",
91
+ "module": "./dist/index.js",
92
+ "types": "./dist/index.d.ts"
93
+ }