-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
94 lines (94 loc) · 2.65 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.6",
"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": "catalog:",
"@voxpelli/config-array-find-files": "catalog:",
"bundle-require": "catalog:",
"cac": "catalog:",
"chokidar": "catalog:",
"esbuild": "catalog:",
"fast-glob": "catalog:",
"find-up": "catalog:",
"get-port-please": "catalog:",
"h3": "catalog:",
"minimatch": "catalog:",
"mlly": "catalog:",
"mrmime": "catalog:",
"open": "catalog:",
"picocolors": "catalog:",
"ws": "catalog:"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@iconify-json/carbon": "catalog:",
"@iconify-json/file-icons": "catalog:",
"@iconify-json/logos": "catalog:",
"@iconify-json/ph": "catalog:",
"@iconify-json/simple-icons": "catalog:",
"@iconify-json/svg-spinners": "catalog:",
"@iconify-json/twemoji": "catalog:",
"@iconify-json/vscode-icons": "catalog:",
"@nuxt/eslint": "catalog:",
"@types/connect": "catalog:",
"@types/ws": "catalog:",
"@typescript-eslint/utils": "catalog:",
"@unocss/eslint-config": "catalog:",
"@unocss/nuxt": "catalog:",
"@vueuse/nuxt": "catalog:",
"eslint": "catalog:",
"floating-vue": "catalog:",
"fuse.js": "catalog:",
"lint-staged": "catalog:",
"nuxt": "catalog:",
"nuxt-eslint-auto-explicit-import": "catalog:",
"shiki": "catalog:",
"simple-git-hooks": "catalog:",
"textmate-grammar-glob": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"vue-tsc": "catalog:"
},
"pnpm": {
"overrides": {
"nitropack": "catalog:"
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}