-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 864 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 864 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
{
"name": "mini-agents-monorepo",
"version": "0.0.0",
"private": true,
"description": "A mini AI agent",
"scripts": {
"build": "pnpm -r build",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check .",
"check:fix": "biome check . --write",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish"
},
"workspaces": [
"packages/*",
"examples/*"
],
"packageManager": "pnpm@10.21.0",
"author": "liruifengv",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.3.5",
"@changesets/cli": "^2.29.8",
"@types/node": "^20.0.0",
"tsx": "^4.20.6",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
}
}