-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.24 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": "@cany748/eslint-config",
"type": "module",
"version": "3.0.3",
"packageManager": "pnpm@9.10.0",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pnpm typegen && tsup --format esm,cjs --clean --dts",
"typegen": "esno scripts/typegen.ts",
"dev": "npx @eslint/config-inspector --config eslint.config.ts",
"lint": "eslint . --flag unstable_ts_config",
"lint:fix": "eslint . --fix --flag unstable_ts_config",
"release": "bumpp && pnpm publish",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"peerDependencies": {
"@unocss/eslint-plugin": "^0.62.3",
"eslint-plugin-vue": "^9.28.0",
"typescript-eslint": "^8.5.0"
},
"peerDependenciesMeta": {
"@unocss/eslint-plugin": {
"optional": true
},
"eslint-plugin-vue": {
"optional": true
},
"typescript-eslint": {
"optional": true
}
},
"dependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
"@vitest/eslint-plugin": "^1.1.0",
"eslint": "^9.10.0",
"eslint-config-flat-gitignore": "^0.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-flat-config-utils": "^0.4.0",
"eslint-plugin-import-x": "^4.2.1",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-unused-imports": "^4.1.3",
"globals": "^15.9.0",
"jsonc-eslint-parser": "^2.4.0",
"local-pkg": "^0.5.0",
"prettier": "^3.3.3"
},
"devDependencies": {
"@types/node": "^22.5.4",
"@unocss/eslint-plugin": "^0.62.3",
"bumpp": "^9.5.2",
"eslint-plugin-vue": "^9.28.0",
"eslint-typegen": "^0.3.2",
"esno": "^4.7.0",
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.2.4",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix --flag unstable_ts_config"
}
}