-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 897 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 897 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
31
32
33
34
{
"name": "komorebi-workspace",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"dev": "npm --workspace examples/basic run dev",
"build": "npm --workspace examples/basic run build",
"check": "npm --workspace examples/basic run check",
"preview": "npm --workspace examples/basic run preview",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run",
"test:watch": "vitest",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@astrojs/check": "^0.9.2",
"@biomejs/biome": "2.4.10",
"astro": "^6.0.0",
"typescript": "^5.9.2",
"vite": "^7.0.0",
"vitepress": "^2.0.0-alpha.17",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=22.12.0"
}
}