-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
executable file
·57 lines (57 loc) · 1.52 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
{
"name": "@nuxtjs/eslint-module",
"version": "4.1.0",
"description": "ESLint module for Nuxt",
"repository": "nuxt-community/eslint-module",
"license": "MIT",
"contributors": [
"Ricardo Gobbo de Souza <ricardogobbosouza@yahoo.com.br>"
],
"type": "module",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/module.cjs",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint --ext .js,.ts,.vue",
"prepack": "pnpm build",
"release": "pnpm test && pnpm build && changelogen --release && git push --follow-tags && pnpm publish",
"test": "pnpm lint && vitest run --coverage"
},
"dependencies": {
"@nuxt/kit": "^3.10.3",
"chokidar": "^3.6.0",
"eslint-webpack-plugin": "^4.0.1",
"pathe": "^1.1.2",
"vite-plugin-eslint": "^1.8.1"
},
"devDependencies": {
"@nuxt/module-builder": "latest",
"@nuxt/test-utils": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@vitest/coverage-v8": "latest",
"changelogen": "latest",
"eslint": "latest",
"nuxt": "latest",
"vitest": "latest"
},
"peerDependencies": {
"eslint": ">=7"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@8.15.4"
}