-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.23 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
{
"name": "tutods-lib",
"private": true,
"license": "MIT",
"description": "Monorepo to store my packages.",
"repository": {
"url": "https://github.com/tutods/lib",
"type": "git"
},
"type": "module",
"packageManager": "[email protected]",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"commit": "cz",
"prepare": "if [ \"$LEFTHOOK\" != \"0\" ];then lefthook install; fi",
"build": "turbo run build",
"lint": "biome check .",
"lint:fix": "biome check --no-errors-on-unmatched --write .",
"lint:staged": "biome check --no-errors-on-unmatched --staged .",
"lint:ci": "biome ci --no-errors-on-unmatched .",
"changeset": "changeset",
"changeset:alpha": "changeset pre enter next",
"version:create": "changeset version --no-verify",
"preversion:publish": "turbo run build",
"version:publish": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@tutods/biome-config": "workspace:*",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"lefthook": "^1.8.2",
"turbo": "^2.2.3"
}
}