-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 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
34
35
36
37
38
39
40
41
42
{
"name": "itsumono",
"author": "K.Utsunomiya",
"private": true,
"packageManager": "pnpm@10.19.0",
"engines": {
"node": ">=24 <25",
"pnpm": ">=10"
},
"workspaces": [
"packages/*",
"website",
"local/*"
],
"scripts": {
"lint": "biome lint ./",
"lint:fix": "biome lint --write ./",
"format": "biome format ./",
"format:fix": "biome format --write ./",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"build": "turbo run build --filter=./packages/*",
"docs": "npm run build -w website"
},
"devDependencies": {
"@biomejs/biome": "2.3.0",
"@local/tsconfig": "workspace:*",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^24.9.1",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.16",
"jsdom": "^27.3.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"rimraf": "^6.1.2",
"tsup": "^8.5.1",
"turbo": "^2.6.3",
"typescript": "^5.9.3",
"vitest": "^4.0.14"
}
}