-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.2 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.2 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@eslint/config-inspector",
"type": "module",
"version": "3.0.4",
"packageManager": "pnpm@11.3.0",
"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"
],
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"scripts": {
"build": "nuxt build && tsdown",
"dev": "nuxt dev",
"cli:build": "node bin.mjs build",
"cli:dev": "pnpm build && node bin.mjs",
"prepare": "nuxt prepare && npx simple-git-hooks && skills-npm",
"start": "node bin.mjs",
"prepack": "pnpm build",
"lint": "nuxt prepare && eslint .",
"test": "vitest",
"pretest:e2e": "node -e \"process.exit(require('node:fs').existsSync('dist/cli.mjs')?0:1)\" || pnpm build",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"typecheck": "nuxt typecheck"
},
"peerDependencies": {
"eslint": "^8.50.0 || ^9.0.0 || ^10.0.0"
},
"dependencies": {
"ansis": "catalog:",
"cac": "catalog:",
"chokidar": "catalog:",
"devframe": "catalog:",
"jiti": "catalog:",
"tinyglobby": "catalog:"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@axe-core/playwright": "catalog:",
"@eslint/config-array": "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:",
"@nodelib/fs.walk": "catalog:",
"@nuxt/eslint": "catalog:",
"@playwright/test": "catalog:",
"@shikijs/langs-precompiled": "catalog:",
"@shikijs/transformers": "catalog:",
"@typescript-eslint/utils": "catalog:",
"@unocss/eslint-config": "catalog:",
"@unocss/nuxt": "catalog:",
"@vueuse/nuxt": "catalog:",
"eslint": "catalog:",
"find-up": "catalog:",
"floating-vue": "catalog:",
"fuse.js": "catalog:",
"lint-staged": "catalog:",
"minimatch": "catalog:",
"mlly": "catalog:",
"nuxt": "catalog:",
"pathe": "catalog:",
"rolldown": "catalog:",
"rollup": "catalog:",
"semver": "catalog:",
"shiki": "catalog:",
"simple-git-hooks": "catalog:",
"skills-npm": "catalog:",
"textmate-grammar-glob": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:",
"vue-tsc": "catalog:"
},
"resolutions": {
"chokidar": "catalog:",
"esbuild": "catalog:",
"nitropack": "catalog:",
"rolldown": "catalog:",
"rollup": "catalog:",
"semver": "catalog:",
"vite": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}