-
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) · 983 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 983 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": "ai-toolkit",
"private": true,
"workspaces": [
"packages/toolkit",
"packages/cli",
"packages/docs"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"test": "turbo test",
"clean": "turbo clean",
"prepare": "husky",
"test:coverage": "turbo test -- --coverage",
"lint:fix": "turbo lint -- --fix",
"verify": "turbo typecheck && turbo lint && turbo test && turbo build",
"verify:quick": "turbo typecheck && turbo lint",
"semantic-checks": "cd packages/toolkit && npx vitest run src/__verification__/toolkit-agent.test.ts"
},
"devDependencies": {
"@biomejs/biome": "2.4.9",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"turbo": "2.8.10",
"typescript": "5.9.3"
},
"lint-staged": {
"*.ts": ["biome check --no-errors-on-unmatched"]
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=20.0.0"
}
}