-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 1.99 KB
/
package.json
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
76
77
78
79
80
81
82
{
"name": "@taiyme/eslint-config",
"version": "0.6.0",
"private": false,
"description": "taiyのためのESLint共有設定",
"homepage": "https://github.com/taiyme/eslint-config",
"bugs": "https://github.com/taiyme/eslint-config/issues",
"repository": {
"type": "git",
"url": "https://github.com/taiyme/eslint-config.git"
},
"license": "MIT",
"author": "taiy <me@taiy.me> (https://taiy.me/)",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf ./dist",
"build": "tsc --project ./tsconfig.build.json",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "pnpm build"
},
"dependencies": {
"@eslint/compat": "1.2.5",
"@eslint/js": "9.18.0",
"@stylistic/eslint-plugin-js": "2.12.1",
"@stylistic/eslint-plugin-jsx": "2.12.1",
"@stylistic/eslint-plugin-ts": "2.12.1",
"@types/eslint__js": "8.42.3",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unused-imports": "4.1.4",
"typescript-eslint": "8.19.1"
},
"devDependencies": {
"@types/node": "22.10.5",
"@typescript-eslint/parser": "8.19.1",
"eslint": "9.18.0",
"eslint-config-flat-gitignore": "1.0.0",
"globals": "15.14.0",
"rimraf": "6.0.1",
"typescript": "5.7.3"
},
"peerDependencies": {
"eslint": ">=9",
"typescript": ">=5"
},
"peerDependenciesMeta": {
"eslint": {
"optional": false
},
"typescript": {
"optional": false
}
},
"packageManager": "pnpm@10.0.0",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"pnpm": {
"overrides": {
"eslint": "$eslint"
}
}
}