-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 998 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 998 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
35
36
37
{
"name": "mejiro-monorepo",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"packageManager": "yarn@4.15.0",
"volta": {
"node": "22.22.3",
"yarn": "4.15.0"
},
"scripts": {
"build": "yarn workspaces foreach -At run build",
"test": "vitest",
"bench": "vitest bench",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "yarn build && tsc -b --noEmit",
"dev": "yarn workspace @mejiro/demo dev",
"dev:react": "yarn workspace @mejiro/react-demo dev",
"dev:vue": "yarn workspace @mejiro/vue-demo dev",
"fetch-demo-epub": "tsx scripts/fetch-demo-epub.ts",
"bump": "node scripts/bump-version.mjs"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/node": "^25",
"@vitest/coverage-v8": "^4.1.8",
"happy-dom": "^20.10.2",
"tsup": "^8.5.1",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}