forked from antfu/eslint-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.61 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
{
"name": "@antfu/eslint-config",
"type": "module",
"version": "1.0.0-beta.22",
"packageManager": "[email protected]",
"description": "Anthony's ESLint config",
"author": "Anthony Fu <[email protected]> (https://github.com/antfu/)",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu/eslint-config",
"keywords": [
"eslint-config"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --clean --dts",
"stub": "tsup src/index.ts --format esm",
"dev": "tsup src/index.ts --format esm,cjs --watch & eslint-flat-config-viewer",
"lint": "pnpm run stub && eslint .",
"prepack": "nr build",
"release": "bumpp && pnpm publish",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"peerDependencies": {
"eslint": ">=8.0.0"
},
"dependencies": {
"@antfu/eslint-define-config": "^1.23.0-1",
"@stylistic/eslint-plugin": "0.0.6",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint-config-flat-gitignore": "^0.1.0",
"eslint-plugin-antfu": "^1.0.0-beta.11",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-i": "^2.28.1",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-jsonc": "^2.9.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-unicorn": "^48.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-vitest": "^0.3.2",
"eslint-plugin-vue": "^9.17.0",
"eslint-plugin-yml": "^1.10.0",
"globals": "^13.23.0",
"jsonc-eslint-parser": "^2.3.0",
"local-pkg": "^0.5.0",
"vue-eslint-parser": "^9.3.2",
"yaml-eslint-parser": "^1.2.2"
},
"devDependencies": {
"@antfu/eslint-config": "workspace:*",
"@antfu/ni": "^0.21.8",
"@stylistic/eslint-plugin-migrate": "^0.0.6",
"@types/eslint": "^8.44.3",
"@types/fs-extra": "^11.0.2",
"@types/node": "^20.8.3",
"bumpp": "^9.2.0",
"eslint": "^8.51.0",
"eslint-flat-config-viewer": "^0.0.9",
"eslint-plugin-sort-keys": "^2.3.5",
"esno": "^0.17.0",
"fast-glob": "^3.3.1",
"fs-extra": "^11.1.1",
"lint-staged": "^14.0.1",
"rimraf": "^5.0.5",
"simple-git-hooks": "^2.9.0",
"sucrase": "^3.34.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vitest": "^0.34.6"
}
}