This repository was archived by the owner on Apr 17, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.98 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "agentrail",
"version": "0.0.1",
"private": true,
"description": "An open-source agent harness framework for building, hosting, and orchestrating tool-using AI agents.",
"license": "Apache-2.0",
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",
"scripts": {
"build": "pnpm -r --filter \"./packages/**\" build && pnpm -r --filter \"./examples/**\" build",
"build:packages": "pnpm -r --filter \"./packages/**\" build",
"build:examples": "pnpm -r --filter \"./examples/**\" build",
"build:sandbox": "docker build -t agentrail-sandbox:latest docker/sandbox",
"changeset": "node ./scripts/create-changeset.mjs",
"changeset:cli": "changeset",
"test": "pnpm -r --filter \"./packages/**\" test && pnpm -r --filter \"./examples/**\" --if-present test",
"typecheck": "pnpm -r --filter \"./packages/**\" typecheck && pnpm -r --filter \"./examples/**\" typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"dev:playground-server": "pnpm --filter @agentrail/playground-server dev",
"dev:playground-ui": "pnpm --filter @agentrail/playground-ui dev",
"dev:deep-research": "pnpm --filter @agentrail/deep-research-example dev",
"version-packages": "changeset version",
"release": "pnpm build:packages && changeset publish --access public"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"concurrently": "^9.2.1",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^5.9.3"
},
"author": {
"name": "Yaid",
"email": "sunzhenyucn@gmail.com",
"url": "https://github.com/yai-dev"
},
"repository": {
"type": "git",
"url": "https://github.com/yai-dev/agentrail.git"
},
"homepage": "https://agentrail.run",
"bugs": {
"url": "https://github.com/yai-dev/agentrail/issues"
}
}