-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.5 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
{
"name": "xstools-open",
"private": true,
"license": "MIT",
"scripts": {
"build": "turbo run build",
"changeset-add": "changeset add",
"changeset-publish": "npm run check-publish && changeset publish",
"changeset-version": "changeset version",
"check-mono": "sherif",
"check-publish": "npm run build && npm run format && npm run lint:js && npm run check-type && npm run test",
"check-type": "turbo run check-type",
"clean": "del **/dist **/.build **/.swc **/.malagu **/.turbo **/node_modules !node_modules",
"commit": "cz",
"dev": "turbo run dev",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint:js": "turbo run lint:js",
"lint:js:fix": "turbo run lint:js:fix",
"prepare": "simple-git-hooks",
"test": "turbo run test"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit $1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,html,css,md,json}": "prettier --check",
"**/*.{js,jsx,ts,tsx}": "eslint"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": "@xstools-dev/prettier-config/base",
"eslintConfig": {
"extends": "@xstools-dev/eslint-config/base"
},
"devDependencies": {
"@types/bun": "^1.1.6",
"@types/node": "^20.14.10",
"@xstools-dev/mix": "^0.5.0",
"typescript": "^5.5.3"
},
"packageManager": "[email protected]"
}