-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.18 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
{
"name": "@coderwyd/eslint-config",
"version": "5.1.0",
"description": "Donny's ESLint config",
"keywords": [
"eslint",
"eslint-config",
"eslint-config-react",
"eslint-config-svelte",
"eslint-config-vue"
],
"homepage": "https://github.com/coderwyd/eslint-config",
"license": "MIT",
"author": "Donny Wang <donny526@outlook.com> (https://github.com/coderwyd/)",
"repository": {
"type": "git",
"url": "git+https://github.com/coderwyd/eslint-config.git"
},
"files": [
"dist"
],
"type": "module",
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pnpm build:typegen && tsdown",
"build:inspector": "pnpm build && pnpx @eslint/config-inspector build",
"build:typegen": "node scripts/typegen.ts",
"dev": "pnpx @eslint/config-inspector",
"fmt": "oxfmt",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepack": "pnpm build",
"prepare": "simple-git-hooks",
"release": "bumpp",
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"@antfu/eslint-config": "^9.0.0",
"eslint-flat-config-utils": "^3.2.0"
},
"devDependencies": {
"@eslint/config-inspector": "^3.0.3",
"@types/node": "^25.9.1",
"@typescript/native-preview": "7.0.0-dev.20260107.1",
"bumpp": "^11.1.0",
"eslint": "^10.4.0",
"eslint-plugin-better-tailwindcss": "^4.5.0",
"eslint-typegen": "^2.3.1",
"nano-staged": "^1.0.2",
"oxfmt": "^0.52.0",
"publint": "^0.3.21",
"simple-git-hooks": "^2.13.1",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"unplugin-unused": "^0.5.7"
},
"peerDependencies": {
"eslint": "^9.10.0 || ^10.0.0",
"eslint-plugin-better-tailwindcss": "^0.1.0"
},
"peerDependenciesMeta": {
"eslint-plugin-better-tailwindcss": {
"optional": true
}
},
"simple-git-hooks": {
"pre-commit": "pnpm exec nano-staged"
},
"nano-staged": {
"*": [
"oxfmt --no-error-on-unmatched-pattern",
"eslint --fix"
]
},
"engines": {
"node": "^22.18.0 || >=24.0.0"
},
"packageManager": "pnpm@11.3.0"
}