This repository was archived by the owner on Feb 7, 2026. It is now read-only.
generated from stacksjs/ts-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.9 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.9 KB
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
{
"name": "@stacksjs/eslint-plugin",
"type": "module",
"version": "0.2.4",
"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"
}
},
"module": "dist/index.mjs",
"files": [
"dist"
],
"engines": {
"node": ">=22.15.0"
},
"scripts": {
"build": "unbuild",
"typecheck": "tsc --noEmit",
"lint": "bun run build && cd ./fixtures && bunx eslint ./src",
"changelog": "bunx logsmith --verbose",
"changelog:generate": "bunx logsmith --output CHANGELOG.md",
"release": "bun run changelog:generate && bunx bumpx prompt --recursive",
"postinstall": "bunx git-hooks",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@stacksjs/eslint-config": "^4.10.2-beta.3",
"@typescript-eslint/utils": "^8.32.1",
"@unocss/config": "66.1.1",
"@unocss/core": "66.1.1",
"magic-string": "^0.30.17",
"synckit": "^0.11.4",
"unocss": "^66.1.1"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
"@eslint/markdown": "^6.4.0",
"@stacksjs/bumpx": "^0.1.17",
"@stacksjs/gitlint": "^0.1.5",
"@stacksjs/logsmith": "^0.1.8",
"@stacksjs/path": "latest",
"@stylistic/eslint-plugin": "^4.2.0",
"@types/bun": "^1.2.13",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"@vitest/eslint-plugin": "^1.1.44",
"buddy-bot": "^0.8.9",
"bun-git-hooks": "^0.2.19",
"eslint-config-flat-gitignore": "^2.1.0",
"eslint-flat-config-utils": "^2.0.1",
"eslint-merge-processors": "^2.0.0",
"eslint-plugin-antfu": "^3.1.1",
"eslint-plugin-command": "^3.2.0",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-import-x": "^4.11.1",
"eslint-plugin-jsdoc": "^50.6.14",
"eslint-plugin-jsonc": "^2.20.0",
"eslint-plugin-n": "^17.18.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-perfectionist": "^4.13.0",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-toml": "^0.12.0",
"eslint-plugin-unicorn": "^59.0.1",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vue": "^10.1.0",
"eslint-plugin-yml": "^3.0.0",
"eslint-processor-vue-blocks": "^2.0.0",
"eslint-vitest-rule-tester": "^2.2.0",
"unbuild": "3.5.0",
"vitest": "^3.1.3",
"vue-eslint-parser": "^10.1.3"
},
"git-hooks": {
"pre-commit": {
"staged-lint": {
"*.{js,ts,json,yaml,yml,md}": "bunx --bun eslint --fix"
}
},
"commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
}
}