-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.91 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.91 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@yagr/agent",
"version": "0.2.15",
"description": "Autonomous automation agent grounded in deterministic workflow infrastructure",
"type": "module",
"bin": {
"yagr": "dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -b && node scripts/build-webui.mjs",
"clean": "rm -rf dist tsconfig.tsbuildinfo node_modules/.cache docs/static/img/yagr-logo.png",
"clean:yagr:all": "node scripts/clean-yagr-local.mjs",
"test": "npm run test:unit",
"test:unit": "npm run build && node --test tests/*.test.mjs",
"test:integration": "npm run build && node --test tests/integration/*.test.mjs",
"test:providers": "npm run build && node scripts/provider-integration-matrix.mjs",
"test:providers:strict": "npm run build && node scripts/provider-integration-matrix.mjs --strict",
"test:providers:advanced": "YAGR_IT_ADVANCED=1 npm run test:providers",
"test:providers:advanced:strict": "YAGR_IT_ADVANCED=1 npm run test:providers:strict",
"test:providers:apikey": "YAGR_IT_PROVIDERS=openai,anthropic,google,mistral,openrouter npm run test:providers",
"test:providers:apikey:strict": "YAGR_IT_PROVIDERS=openai,anthropic,google,mistral,openrouter npm run test:providers:strict",
"test:providers:apikey:advanced": "YAGR_IT_PROVIDERS=openai,anthropic,google,mistral,openrouter YAGR_IT_ADVANCED=1 npm run test:providers",
"test:providers:apikey:advanced:strict": "YAGR_IT_PROVIDERS=openai,anthropic,google,mistral,openrouter YAGR_IT_ADVANCED=1 npm run test:providers:strict",
"test:scenarios": "npm run build && node scripts/scenario-integration-test.mjs",
"test:scenarios:strict": "npm run build && node scripts/scenario-integration-test.mjs --strict",
"typecheck": "tsc --noEmit",
"sync:brand-assets": "node scripts/sync-brand-assets.mjs",
"yagr:onboard": "YAGR_HOME=.yagr-test-workspace node dist/cli.js onboard",
"yagr:start": "YAGR_HOME=.yagr-test-workspace node dist/cli.js start",
"yagr:gateway:status": "YAGR_HOME=.yagr-test-workspace node dist/cli.js gateway status",
"yagr:dev": "node scripts/yagr-dev-scenario.mjs",
"yagr:test:workspace": "node scripts/yagr-test-workspace.mjs pwd",
"yagr:test:init": "node scripts/yagr-test-workspace.mjs init",
"yagr:test:agent": "node scripts/yagr-test-workspace.mjs agent",
"release:plan": "node scripts/release/workspace-release.mjs stable-pr",
"release:prepare": "node scripts/release/workspace-release.mjs stable-pr --apply",
"release:prerelease": "node scripts/release/workspace-release.mjs prerelease",
"release:pending": "node scripts/release/workspace-release.mjs pending-stable",
"check-versions": "node scripts/check-version-consistency.js",
"docs": "cd docs && npm start",
"docs:build": "cd docs && npm run build",
"update:snapshot": "node scripts/update-model-snapshot.mjs"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"@ai-sdk/google": "^1.2.22",
"@ai-sdk/openai": "^1.3.24",
"@inkjs/ui": "^2.0.0",
"@n8n-as-code/skills": "1.1.2",
"@n8n-as-code/transformer": "1.0.1",
"@types/qrcode-terminal": "^0.12.2",
"ai": "^4.3.19",
"conf": "^13.0.1",
"dotenv": "^17.2.3",
"fullscreen-ink": "^0.1.0",
"ink": "^6.8.0",
"n8nac": "1.1.2",
"qrcode-terminal": "^0.12.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"telegraf": "^4.16.3",
"zod": "^3.22.4",
"zustand": "^5.0.8"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"esbuild": "^0.25.3",
"testcontainers": "^11.13.0",
"typescript": "^5.3.3"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EtienneLescot/yagr.git"
},
"publishConfig": {
"access": "public"
},
"author": "Etienne Lescot",
"license": "MIT"
}