generated from stacksjs/ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.55 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": "@stacksjs/eslint-plugin",
"type": "module",
"version": "0.1.3",
"description": "The Stacks ESLint plugin",
"license": "MIT",
"funding": "https://github.com/sponsors/chrisbbreuer",
"homepage": "https://github.com/stacksjs/eslint-plugin",
"repository": {
"type": "git",
"url": "https://github.com/stacksjs/eslint-plugin"
},
"bugs": {
"url": "https://github.com/unocss/unocss/issues"
},
"keywords": [
"eslint-plugin",
"eslint"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"files": [
"dist"
],
"engines": {
"node": ">=20.18.0"
},
"scripts": {
"build": "unbuild",
"typecheck": "tsc --noEmit",
"lint": "bun run build && cd ./fixtures && bunx eslint ./src",
"changelog": "bunx changelogen --output CHANGELOG.md",
"prepublishOnly": "bun run build",
"release": "bun run changelog && bunx bumpp package.json --all"
},
"dependencies": {
"@stacksjs/eslint-config": "^3.7.3-stacks-1.10",
"@typescript-eslint/utils": "^8.8.1",
"@unocss/config": "0.61.0",
"@unocss/core": "0.61.0",
"magic-string": "^0.30.12",
"synckit": "^0.9.2",
"unocss": "0.61.0"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
"@eslint/markdown": "^6.2.0",
"@stacksjs/path": "^0.65.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/bun": "^1.1.11",
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@vitest/eslint-plugin": "^1.1.7",
"bumpp": "^9.7.1",
"changelogen": "^0.5.7",
"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.3.1",
"eslint-plugin-jsdoc": "^50.3.1",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-n": "^17.11.1",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-perfectionist": "^3.8.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-toml": "^0.11.1",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vue": "^9.29.0",
"eslint-plugin-yml": "^1.14.0",
"eslint-processor-vue-blocks": "^0.1.2",
"eslint-vitest-rule-tester": "^0.6.1",
"unbuild": "2.0.0",
"vitest": "^2.1.2",
"vue-eslint-parser": "^9.4.3"
}
}