-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
85 lines (85 loc) · 2.04 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
{
"name": "@nuxt/eslint-config",
"version": "0.7.4",
"description": "ESLint config for Nuxt projects",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/eslint.git",
"directory": "packages/eslint-config"
},
"license": "MIT",
"main": "./dist/legacy.cjs",
"module": "./dist/legacy.mjs",
"types": "./dist/legacy.d.ts",
"exports": {
".": {
"import": "./dist/legacy.mjs",
"require": "./dist/legacy.cjs"
},
"./flat": {
"import": "./dist/flat.mjs",
"require": "./dist/flat.cjs"
},
"./legacy": {
"import": "./dist/legacy.mjs",
"require": "./dist/legacy.cjs"
}
},
"typesVersions": {
"*": {
"flat": [
"./dist/flat.d.ts"
],
"legacy": [
"./dist/legacy.d.ts"
],
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"prepack": "pnpm run build"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0",
"eslint-plugin-format": "*"
},
"peerDependenciesMeta": {
"eslint-plugin-format": {
"optional": true
}
},
"dependencies": {
"@antfu/install-pkg": "catalog:",
"@clack/prompts": "catalog:",
"@eslint/js": "catalog:",
"@nuxt/eslint-plugin": "workspace:*",
"@stylistic/eslint-plugin": "catalog:",
"@typescript-eslint/eslint-plugin": "catalog:",
"@typescript-eslint/parser": "catalog:",
"eslint-config-flat-gitignore": "catalog:",
"eslint-flat-config-utils": "catalog:",
"eslint-merge-processors": "catalog:",
"eslint-plugin-import-x": "catalog:",
"eslint-plugin-jsdoc": "catalog:",
"eslint-plugin-regexp": "catalog:",
"eslint-plugin-unicorn": "catalog:",
"eslint-plugin-vue": "catalog:",
"eslint-processor-vue-blocks": "catalog:",
"globals": "catalog:",
"local-pkg": "catalog:",
"pathe": "catalog:",
"vue-eslint-parser": "catalog:"
},
"devDependencies": {
"eslint": "catalog:",
"typescript": "catalog:"
}
}