-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.53 KB
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": "agentfile-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bench": "npm run bench -w packages/core",
"clean": "rm -rf packages/core/dist packages/cli/dist packages/agentfile/dist packages/ui/dist packages/extension/dist",
"build": "npm run build -w packages/core && npm run build -w packages/ui && npm run build -w packages/cli && npm run build -w packages/agentfile && npm run build -w packages/extension",
"test": "npm run test --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"lint": "biome check",
"lint:fix": "biome check --write",
"format": "biome format --write",
"publish:core": "npm run build -w packages/core && npm publish --workspace packages/core",
"publish:cli": "npm run build -w packages/cli && npm publish --workspace packages/cli",
"publish:wrapper": "npm run build -w packages/agentfile && npm publish --workspace packages/agentfile",
"publish:ui": "npm run build -w packages/ui && npm publish --workspace packages/ui --tag beta",
"publish:extension": "npm run build -w packages/extension && npm run publish:marketplace -w packages/extension",
"package:extension": "npm run package -w packages/extension",
"publish:all": "npm run publish:core && npm run publish:cli && npm run publish:wrapper && npm run publish:ui"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"typescript": "^6.0.2"
},
"devDependencies": {
"@biomejs/biome": "2.5.11",
"semver": "^7.8.5"
}
}