-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
73 lines (73 loc) · 1.99 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
{
"name": "@nuxt/eslint",
"type": "module",
"version": "0.7.4",
"description": "Generate ESLint config from current Nuxt settings",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/eslint.git",
"directory": "packages/module"
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"module": "./dist/module.mjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build build",
"prepare": "nuxt-module-build prepare",
"prepack": "pnpm run build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint .",
"lint:play": "cd playground && eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0",
"eslint-webpack-plugin": "^4.1.0",
"vite-plugin-eslint2": "^4.4.0 || ^5.0.0"
},
"peerDependenciesMeta": {
"eslint-webpack-plugin": {
"optional": true
},
"vite-plugin-eslint2": {
"optional": true
}
},
"dependencies": {
"@eslint/config-inspector": "catalog:",
"@nuxt/devtools-kit": "catalog:",
"@nuxt/eslint-config": "workspace:*",
"@nuxt/eslint-plugin": "workspace:*",
"@nuxt/kit": "catalog:",
"chokidar": "catalog:",
"eslint-flat-config-utils": "catalog:",
"eslint-typegen": "catalog:",
"find-up": "catalog:",
"get-port-please": "catalog:",
"mlly": "catalog:",
"pathe": "catalog:",
"unimport": "catalog:"
},
"devDependencies": {
"@nuxt/module-builder": "catalog:",
"@nuxt/schema": "catalog:",
"@typescript-eslint/scope-manager": "catalog:",
"eslint-webpack-plugin": "catalog:",
"nuxt": "catalog:",
"vite-plugin-eslint2": "catalog:"
}
}