-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.01 KB
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
{
"name": "starlight-git-contributors-monorepo",
"version": "0.0.0",
"private": true,
"description": "Monorepo root for starlight-git-contributors.",
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@10.26.1",
"homepage": "https://github.com/sitapix/starlight-git-contributors",
"repository": {
"type": "git",
"url": "git+https://github.com/sitapix/starlight-git-contributors.git"
},
"bugs": {
"url": "https://github.com/sitapix/starlight-git-contributors/issues"
},
"scripts": {
"prepare": "node scripts/install-hooks.mjs",
"test": "pnpm --filter starlight-git-contributors test",
"build:docs": "pnpm --filter starlight-git-contributors-docs build",
"dev:docs": "pnpm --filter starlight-git-contributors-docs dev",
"typecheck": "node scripts/typecheck.mjs",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write .",
"check:ci": "biome ci ."
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"typescript": "^5.6.0"
}
}