-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.32 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
{
"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",
"postchangeset": "git push",
"changeset:alpha": "changeset pre enter next",
"version:create": "LEFTHOOK=0 changeset version --no-verify",
"preversion:publish": "turbo run build",
"version:publish": "changeset publish",
"postversion:publish": "git push"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.12",
"@tutods/biome-config": "workspace:*",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"lefthook": "^1.10.10",
"turbo": "^2.4.2"
}
}