-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.59 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": "@will-stone/eslint-config",
"version": "12.0.1",
"description": "Will Stone's ESLint config",
"keywords": [
"eslint-config"
],
"homepage": "https://github.com/will-stone/eslint-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/will-stone/eslint-config.git"
},
"license": "MIT",
"author": "Will Stone",
"type": "module",
"exports": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm --clean --dts",
"dev": "tsup src/index.ts --format esm --watch & config-inspector --config ./eslint-config-for-inspector.js",
"lint": "npm run stub && eslint .",
"prepare": "simple-git-hooks",
"prepublishOnly": "npm run build",
"release": "release-it",
"stub": "tsup src/index.ts --format esm",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"simple-git-hooks": {
"pre-commit": "npx --no lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
],
"*.{css,json,md,js,ts}": [
"prettier --write"
]
},
"prettier": "@will-stone/prettier-config",
"dependencies": {
"@eslint/compat": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"astro-eslint-parser": "^1.0.3",
"confusing-browser-globals": "^1.0.11",
"eslint-config-flat-gitignore": "^0.3.0",
"eslint-plugin-astro": "^1.3.0",
"eslint-plugin-import-x": "^4.4.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.12.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^15.11.0",
"globby": "^14.0.2",
"type-fest": "^4.26.1"
},
"devDependencies": {
"@commits-with-character/conventional-changelog-preset": "^1.0.0",
"@eslint/config-inspector": "^0.5.6",
"@release-it/conventional-changelog": "^9.0.2",
"@types/confusing-browser-globals": "^1.0.3",
"@types/eslint": "^9.6.1",
"@types/node": "^22.8.6",
"@typescript-eslint/utils": "^8.12.2",
"@will-stone/prettier-config": "^8.0.1",
"lint-staged": "^15.2.10",
"memfs": "^4.14.0",
"prettier": "^3.3.3",
"release-it": "^17.10.0",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"peerDependencies": {
"eslint": ">=9.14.0"
},
"overrides": {
"eslint": ">=9.14.0"
}
}