forked from 1weiho/open-slide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.03 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.03 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
{
"name": "open-slide-monorepo",
"private": true,
"version": "0.0.0",
"packageManager": "pnpm@10.17.0",
"scripts": {
"dev": "turbo run dev",
"dev:web": "turbo run dev --filter=web",
"dev:demo": "turbo run dev --filter=demo",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"test": "vitest run",
"test:watch": "vitest",
"core": "pnpm --filter @open-slide/core",
"cli": "pnpm --filter @open-slide/cli",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter=@open-slide/core --filter=@open-slide/cli && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"turbo": "^2.3.0",
"vitest": "^2.1.9"
}
}