-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.56 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
{
"private": true,
"type": "module",
"scripts": {
"format": "prettier --list-different .",
"lint": "eslint --max-warnings 0 .",
"prepare": "husky",
"test": "vitest",
"typecheck": "tsc"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
72
]
}
},
"lint-staged": {
"*": [
"eslint --fix --max-warnings 0 --no-warn-ignored",
"prettier --ignore-unknown --write",
"vitest related --run"
]
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
"@eslint/js": "^9.11.1",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "20",
"eslint": "9.x",
"eslint-config-flat-gitignore": "^0.3.0",
"eslint-plugin-depend": "^0.11.0",
"eslint-plugin-jsdoc": "^50.3.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-perfectionist": "^3.8.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^1.0.4",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0",
"vitest": "^2.1.1"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
}
}