-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 944 Bytes
/
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
{
"name": "@kurocado-studio/html-forms",
"version": "0.0.0",
"private": true,
"description": "",
"author": "@kurocado-studio",
"license": "MPL-2.0",
"scripts": {
"commitlint": "pnpm exec commitlint --edit",
"eslint-check": "eslint --max-warnings=0 .",
"prepare": "husky install",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --check . --write",
"semantic-release": "semantic-release"
},
"lint-staged": {
"*": "prettier -w --ignore-unknown",
"src/**/*.{ts,tsx}": [
"npm run prettier-fix",
"npm run eslint-check"
]
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@kurocado-studio/style-guide": "^1.0.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"prettier": "^3.3.3",
"semantic-release": "^23.0.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0"
}
}