-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.18 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.18 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
47
48
49
50
51
52
53
{
"name": "open-agent-toolkit",
"version": "0.0.5",
"private": true,
"description": "An open-source toolkit for portable, provider-agnostic agent tooling and workflows.",
"license": "MIT",
"type": "module",
"scripts": {
"oat:validate-skills": "pnpm run cli -- internal validate-oat-skills",
"build": "turbo run build --filter='!oat-docs'",
"build:docs": "turbo run build --filter=oat-docs...",
"check": "turbo run check",
"check:fix": "turbo run check:fix",
"clean": "turbo run clean",
"cli": "bash packages/cli/scripts/bundle-assets.sh && tsx --tsconfig packages/cli/tsconfig.json packages/cli/src/index.ts",
"dev": "turbo run dev",
"dev:docs": "pnpm --filter oat-docs dev",
"docs:check-links": "tsx tools/docs/check-links.ts",
"format": "turbo run format",
"format:fix": "turbo run format:fix",
"hooks:disable-all": "node tools/git-hooks/manage-hooks.js disable-all",
"hooks:enable-all": "node tools/git-hooks/manage-hooks.js enable-all",
"hooks:status": "node tools/git-hooks/manage-hooks.js status",
"hooks": "node tools/git-hooks/manage-hooks.js",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"prepare": "test \"$GIT_HOOKS\" = \"0\" && exit 0; node tools/git-hooks/manage-hooks.js setup 2>/dev/null || true",
"release:check-versions": "tsx tools/release/check-version-bumps.ts",
"release:validate": "tsx tools/release/validate-public-packages.ts",
"test": "turbo run test",
"type-check": "turbo run type-check",
"cli:link": "pnpm run build --filter=@open-agent-toolkit/cli && cd packages/cli && pnpm link --global",
"worktree:init": "pnpm install && pnpm hooks setup && pnpm run build && pnpm run cli -- sync --scope project"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@playwright/test": "^1.51.1",
"@types/node": "^22.10.0",
"lint-staged": "^15.2.11",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"tsc-alias": "^1.8.10",
"tsx": "^4.21.0",
"turbo": "^2.7.6",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=22.17.0",
"pnpm": ">=10.13.1"
},
"packageManager": "pnpm@10.13.1"
}