-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.49 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
88
89
{
"name": "@paro-paro/eslint-config",
"type": "module",
"version": "1.2.1",
"packageManager": "[email protected]",
"description": "ESLint config preset by @paro-paro",
"author": "Antonio PG <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/paro-paro/eslint-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/paro-paro/eslint-config.git"
},
"bugs": "https://github.com/paro-paro/eslint-config/issues",
"keywords": ["eslint", "eslint-config"],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch & pnpm run preview",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"typecheck": "tsc --noEmit",
"printconfig": "eslint --print-config",
"preview": "eslint-flat-config-viewer",
"prepare:hooks": "simple-git-hooks",
"prepublishOnly": "pnpm run build",
"release": "bumpp && pnpm publish"
},
"peerDependencies": {
"eslint": ">=8.21.0"
},
"dependencies": {
"@stylistic/eslint-plugin": "^1.4.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint-config-flat-gitignore": "^0.1.1",
"eslint-define-config": "^1.24.1",
"eslint-plugin-antfu": "^1.0.11",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-i": "^2.29.0",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-jsonc": "^2.10.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-sort-exports": "^0.8.0",
"eslint-plugin-unicorn": "^49.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-vue": "^9.18.1",
"eslint-plugin-yml": "^1.10.0",
"globals": "^13.23.0",
"jsonc-eslint-parser": "^2.4.0",
"local-pkg": "^0.5.0",
"vue-eslint-parser": "^9.3.2",
"yaml-eslint-parser": "^1.2.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"bumpp": "^9.2.0",
"eslint": "^8.54.0",
"eslint-flat-config-viewer": "^0.1.3",
"lint-staged": "^15.1.0",
"simple-git-hooks": "^2.9.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"publishConfig": {
"access": "public"
}
}