-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.27 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.27 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@youdotcom-oss/agent-skill",
"private": true,
"engines": {
"node": ">=18",
"bun": ">= 1.2.21"
},
"scripts": {
"check": "bun run check:js && bun run check:py && bun run check:package && check:types",
"check:js": "biome check",
"check:package": "format-package --check",
"check:py": "uv tool run ruff check .",
"check:types": "tsc --noEmit",
"check:write": "bun run check:write-js && bun run check:write-py && bun run check:write-package",
"check:write-js": "biome check --write",
"check:write-package": "format-package --write",
"check:write-py": "uv tool run ruff check --fix . && uv tool run ruff format .",
"copy:openclaw": "bun scripts/copy-openclaw.ts",
"generate:ydc-schemas": "bun scripts/generate-ydc-schemas.ts",
"eval": "bun scripts/run.ts",
"eval:summary": "bun scripts/run.ts --summary-only",
"prepare": "git config core.hooksPath .hooks"
},
"lint-staged": {
"*.{ts,tsx}": [
"biome check --write --no-errors-on-unmatched"
],
"*.{json,md}": [
"biome format --write --no-errors-on-unmatched"
],
"*.py": [
"uv tool run ruff check --fix",
"uv tool run ruff format"
],
"package.json": [
"format-package --write"
]
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.76",
"@openai/agents": "^0.7.2",
"@anthropic-ai/sdk": "^0.79.0",
"@microsoft/teams.ai": "^2.0.5",
"@microsoft/teams.common": "^2.0.5",
"@microsoft/teams.apps": "^2.0.5",
"@microsoft/teams.mcpclient": "^2.0.5",
"@youdotcom-oss/teams-anthropic": "^1.1.0",
"@biomejs/biome": "2.4.7",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@plaited/agent-eval-harness": "^0.13.0",
"@plaited/development-skills": "^0.8.1",
"@types/bun": "1.3.10",
"format-package": "^7.0.0",
"lint-staged": "^16.4.0",
"typescript": "^5.9.3",
"typescript-language-server": "^5.1.3",
"zod": "^4.3.6"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.58",
"@langchain/anthropic": "^1.3.23",
"@langchain/core": "^1.1.32",
"@youdotcom-oss/ai-sdk-plugin": "^2.2.0",
"@youdotcom-oss/api": "^0.3.4",
"@youdotcom-oss/langchain": "^1.2.0",
"ai": "^6.0.116",
"langchain": "^1.2.32"
}
}