-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.84 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
{
"name": "@curev/eslint-config",
"type": "module",
"version": "0.5.0",
"packageManager": "[email protected]",
"author": "Chizuki<[email protected]> (https://github.com/chizukicn/)",
"license": "MIT",
"homepage": "https://github.com/curev/eslint-config",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup --format esm,cjs --clean --dts",
"stub": "tsup --format esm",
"dev": "npx @eslint/config-inspector --config eslint.config.ts",
"build:inspector": "pnpm build && npx @eslint/config-inspector build",
"lint": "eslint --cache .",
"prepack": "nr build",
"prepare": "pnpm simple-git-hooks",
"bump": "bumpp --commit --push --tag",
"up:deps": "taze major",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"eslint": "^9.10.0"
},
"dependencies": {
"@antfu/eslint-config": "^4.8.1",
"defu": "^6.1.4"
},
"devDependencies": {
"@antfu/ni": "^23.3.1",
"@eslint/config-inspector": "^1.0.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.17.24",
"bumpp": "^10.0.3",
"eslint": "^9.22.0",
"eslint-flat-config-utils": "^2.0.1",
"esno": "^4.8.0",
"execa": "^9.5.2",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.0",
"lint-staged": "^15.4.3",
"simple-git-hooks": "^2.11.1",
"taze": "^18.7.1",
"tsup": "^8.4.0",
"typescript": "^5.7.3",
"vitest": "^3.0.8"
},
"resolutions": {
"@eslint-community/eslint-utils": "^4.4.1",
"@typescript-eslint/utils": "^8.26.0",
"eslint": "^9.22.0",
"tsx": "^4.19.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{jsx,js,vue,ts,tsx}": [
"eslint --cache --fix"
]
}
}