-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 840 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 840 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
{
"name": "butterfly-agent",
"version": "0.1.0",
"description": "Butterfly Agent — intelligent agent system",
"private": true,
"scripts": {
"dev": "tsc --noEmit -p tsconfig.json",
"build": "tsc -p tsconfig.json --noEmit false",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"format": "biome format --write .",
"clean": "rm -rf dist build .turbo"
},
"keywords": [
"ai-agent",
"coding-agent",
"llm",
"agent-framework"
],
"author": "Butterfly Agent Contributors",
"license": "MIT",
"packageManager": "pnpm@10.33.2",
"devDependencies": {
"@biomejs/biome": "^2.5.2",
"@types/node": "^22.20.1",
"typescript": "~5.7.3",
"vitest": "^4.1.9"
}
}