-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 930 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 930 Bytes
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
{
"name": "tsops-monorepo",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"clean": "turbo run clean",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "turbo run build",
"test": "turbo run test",
"docs:dev": "pnpm -F tsops-docs dev",
"docs:build": "pnpm -F tsops-docs build",
"docs:preview": "pnpm -F tsops-docs preview",
"changeset": "changeset",
"changeset:version": "changeset version",
"release:publish": "pnpm -r build && pnpm -r publish --access public --no-git-checks"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"@types/node": "^25.6.0",
"turbo": "^2.9.6",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@10.17.1"
}