-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@cffnpwr/eslint-config",
"version": "1.2.0",
"private": false,
"description": "Common ESLint configuration for cffnpwr",
"homepage": "https://github.com/cffnpwr/eslint-config",
"bugs": "https://github.com/cffnpwr/eslint-config/issues",
"repository": {
"type": "git",
"url": "https://github.com/cffnpwr/eslint-config.git"
},
"license": "MIT",
"author": "cffnpwr",
"type": "module",
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"clean": "rm -rf dist node_modules",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"publish:jsr": "jsr publish"
},
"dependencies": {
"@eslint/js": "9.39.4",
"@stylistic/eslint-plugin": "5.10.0",
"eslint-plugin-better-tailwindcss": "4.5.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-perfectionist": "5.9.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-tailwindcss": "4.0.0-beta.0",
"eslint-plugin-unused-imports": "4.4.1",
"typescript-eslint": "8.59.3"
},
"devDependencies": {
"@types/bun": "1.3.14",
"@types/eslint-plugin-jsx-a11y": "6.10.1",
"eslint": "9.39.4",
"eslint-config-flat-gitignore": "2.3.0",
"jsr": "0.14.3",
"pnpm": "10.33.4",
"tsdown": "0.22.0",
"typescript": "6.0.3"
},
"peerDependencies": {
"eslint": ">=9.18.0",
"typescript": ">=5.5.0"
},
"peerDependenciesMeta": {
"eslint": {
"optional": false
},
"typescript": {
"optional": false
}
},
"overrides": {
"minimatch": "10.2.5",
"ajv": "6.15.0"
},
"publishConfig": {
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
}
}
}