-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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": "gsr",
"private": true,
"repository": "https://github.com/typicalninja/google-sr",
"scripts": {
"build": "turbo run build --no-daemon",
"dev": "turbo run dev --parallel --no-daemon",
"test": "turbo run test --no-daemon --filter=google-sr -- --watch=false",
"build:packages": "turbo run build --no-daemon",
"build:docs": "typedoc ",
"lint": "biome lint --write",
"format": "biome format --write",
"check": "biome check --write",
"ci:publish": "pnpm publish -r --no-git-checks",
"ci:version": "changeset version",
"prepare": "is-ci || lefthook install"
},
"author": "typicalninja",
"license": "Apache-2.0",
"engines": {
"node": ">=15.0.0",
"pnpm": ">=9"
},
"packageManager": "[email protected]",
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@changesets/cli": "^2.27.10",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"is-ci": "3.0.1",
"lefthook": "^1.9.0",
"pkg-pr-new": "^0.0.29",
"tsup": "^8.3.5",
"turbo": "^2.3.3",
"typedoc": "^0.27.3",
"typescript": "^5.7.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}