-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "@discijs/main",
"private": true,
"scripts": {
"build": "turbo run build --no-daemon",
"build:docs": "turbo run build --no-daemon --filter=docs",
"build:packages": "turbo run build --no-daemon --filter=\"./packages/**\"",
"dev": "turbo run dev --parallel --no-daemon",
"lint": "biome lint --write",
"format": "biome format --write",
"check": "biome check --write",
"prepare": "is-ci || lefthook install",
"ci:publish": "pnpm publish -r --no-git-checks",
"ci:version": "changeset version"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.9",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"is-ci": "3.0.1",
"lefthook": "^1.7.22",
"pkg-pr-new": "^0.0.30",
"tsup": "^8.3.0",
"turbo": "^2.1.3",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=14.0.0",
"pnpm": ">=8"
},
"packageManager": "[email protected]",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}