-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 936 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 936 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
{
"name": "typescript-agent-monorepo",
"private": true,
"version": "0.0.0",
"packageManager": "pnpm@10.22.0",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"test:watch": "turbo run test:watch",
"lint": "turbo run lint",
"lint:fix": "biome check --write packages/*/src packages/*/tests",
"typecheck": "turbo run typecheck",
"verify:packages": "node scripts/verify-package-boundaries.mjs",
"changeset": "changeset",
"version": "changeset version && turbo run gen:version",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@types/node": "^22.13.12",
"@vitest/coverage-v8": "^4.1.5",
"dotenv": "^16.4.7",
"husky": "^9.1.7",
"turbo": "2.9.6",
"typescript": "~5.8.3",
"vitest": "^4.1.5"
}
}