forked from antfu/eslint-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.51 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@stacksjs/eslint-config",
"type": "module",
"version": "3.12.0-beta.4",
"description": "Stacks ESLint config",
"author": "Anthony Fu <[email protected]> (https://github.com/antfu/)",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/stacksjs/eslint-config",
"keywords": [
"eslint-config"
],
"exports": {
".": {
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup --format esm --clean --dts",
"stub": "tsup --format esm",
"dev": "bunx @eslint/config-inspector --config eslint.config.js",
"build:inspector": "bun run build && npx @eslint/config-inspector build",
"watch": "tsup --format esm --watch",
"lint": "bunx --bun eslint --flag unstable_ts_config .",
"lint:fix": "bunx --bun eslint --flag unstable_ts_config . --fix",
"typegen": "bun scripts/typegen.ts",
"prepack": "bun run build",
"changelog": "bunx changelogen --output CHANGELOG.md",
"release": "bun run changelog && bunx bumpp package.json --all",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "bun simple-git-hooks"
},
"dependencies": {
"@antfu/install-pkg": "^0.5.0",
"@clack/prompts": "^0.8.2",
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@eslint/markdown": "^6.2.1",
"@stacksjs/eslint-plugin": "0.1.3",
"@stylistic/eslint-plugin": "^2.12.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitest/eslint-plugin": "^1.1.16",
"eslint-config-flat-gitignore": "^0.3.0",
"eslint-flat-config-utils": "^0.4.0",
"eslint-merge-processors": "^0.1.0",
"eslint-plugin-antfu": "^2.7.0",
"eslint-plugin-command": "^0.2.6",
"eslint-plugin-import-x": "^4.5.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-jsonc": "^2.18.2",
"eslint-plugin-n": "^17.15.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-perfectionist": "^4.3.0",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-toml": "^0.12.0",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vue": "^9.32.0",
"eslint-plugin-yml": "^1.16.0",
"eslint-processor-vue-blocks": "^0.1.2",
"globals": "^15.13.0",
"jsonc-eslint-parser": "^2.4.0",
"local-pkg": "^0.5.1",
"parse-gitignore": "^2.0.0",
"toml-eslint-parser": "^0.10.0",
"vue-eslint-parser": "^9.4.3",
"yaml-eslint-parser": "^1.2.3"
},
"devDependencies": {
"@eslint-community/eslint-utils": "^4.4.0",
"@eslint/config-inspector": "^0.6.0",
"@prettier/plugin-xml": "^3.4.1",
"@types/bun": "^1.1.11",
"@types/fs-extra": "^11.0.4",
"@typescript-eslint/utils": "^8.7.0",
"bumpp": "^9.9.1",
"eslint": "^9.16.0",
"eslint-plugin-format": "^0.1.3",
"eslint-typegen": "^0.3.2",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"lint-staged": "^15.2.11",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"vue": "^3.5.13"
},
"resolutions": {
"@eslint-community/eslint-utils": "^4.4.1",
"@typescript-eslint/utils": "^8.18.0",
"eslint": "^9.16.0"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged"
},
"lint-staged": {
"*": "bunx --bun eslint --flag unstable_ts_config --fix"
},
"workspaces": [
"fixtures/*"
]
}