-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 826 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 826 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
{
"name": "genseki",
"private": true,
"scripts": {
"build": "turbo run build",
"bundle": "turbo run bundle",
"codegen": "turbo run codegen",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint -- --fix",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:check": "turbo run format:check",
"typecheck": "turbo run typecheck",
"test": "turbo run test"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@internal/project-config": "workspace:^",
"eslint": "^9.22.0",
"prettier": "^3.5.3",
"turbo": "^2.4.4",
"typescript": "^5.8.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=22"
},
"volta": {
"node": "22.14.0",
"pnpm": "9.0.0"
}
}