-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 647 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 647 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
{
"name": "dev8dotdev",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:go": "turbo run lint:go",
"format": "prettier --write \"**/*.{ts,tsx,md}\" && turbo run format:go",
"format:go": "turbo run format:go",
"check-types": "turbo run check-types",
"test": "turbo run test",
"setup:go": "cd apps/agent && ./setup-go-tools.sh",
"clean": "turbo run clean"
},
"devDependencies": {
"prettier": "^3.6.2",
"turbo": "^2.5.6",
"typescript": "5.9.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
}
}