forked from eslint/config-inspector
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.58 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
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@eslint/config-inspector",
"type": "module",
"version": "0.5.2",
"packageManager": "[email protected]",
"description": "A visual tool for inspecting and understanding your ESLint flat configs",
"license": "Apache-2.0",
"funding": "https://opencollective.com/eslint",
"homepage": "https://github.com/eslint/config-inspector#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/eslint/config-inspector.git"
},
"bugs": "https://github.com/eslint/config-inspector/issues",
"bin": {
"@eslint/config-inspector": "./bin.mjs",
"eslint-config-inspector": "./bin.mjs"
},
"files": [
"*.mjs",
"dist"
],
"scripts": {
"build": "nuxi build && unbuild",
"dev": "nuxi dev",
"prepare": "nuxi prepare && npx simple-git-hooks",
"start": "node bin.mjs",
"prepack": "pnpm build",
"lint": "nuxi prepare && eslint .",
"typecheck": "vue-tsc --noEmit"
},
"peerDependencies": {
"eslint": "^8.50.0 || ^9.0.0"
},
"dependencies": {
"@eslint/config-array": "^0.17.1",
"@voxpelli/config-array-find-files": "^0.1.2",
"bundle-require": "^5.0.0",
"cac": "^6.7.14",
"chokidar": "^3.6.0",
"esbuild": "^0.21.5",
"fast-glob": "^3.3.2",
"find-up": "^7.0.0",
"get-port-please": "^3.1.2",
"h3": "^1.12.0",
"minimatch": "^9.0.5",
"mlly": "^1.7.1",
"mrmime": "^2.0.0",
"open": "^10.1.0",
"picocolors": "^1.0.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.24.1",
"@iconify-json/carbon": "^1.1.37",
"@iconify-json/file-icons": "^1.1.10",
"@iconify-json/logos": "^1.1.44",
"@iconify-json/ph": "^1.1.14",
"@iconify-json/simple-icons": "^1.1.112",
"@iconify-json/svg-spinners": "^1.1.3",
"@iconify-json/twemoji": "^1.1.16",
"@iconify-json/vscode-icons": "^1.1.37",
"@nuxt/eslint": "^0.5.0",
"@types/connect": "^3.4.38",
"@types/ws": "^8.5.12",
"@typescript-eslint/utils": "^8.0.1",
"@unocss/eslint-config": "^0.61.9",
"@unocss/nuxt": "^0.61.9",
"@vueuse/nuxt": "^10.11.0",
"eslint": "^9.8.0",
"floating-vue": "^5.2.2",
"fuse.js": "^7.0.0",
"lint-staged": "^15.2.8",
"nuxt": "^3.12.4",
"nuxt-eslint-auto-explicit-import": "^0.0.2",
"shiki": "^1.12.1",
"simple-git-hooks": "^2.11.1",
"textmate-grammar-glob": "^0.0.1",
"typescript": "^5.5.4",
"unbuild": "^2.0.0",
"vue-tsc": "^2.0.29"
},
"pnpm": {
"overrides": {
"nitropack": "2.8.1"
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}