-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.82 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.82 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
90
{
"name": "@agentworkforce/ricky",
"version": "0.1.75",
"license": "Apache-2.0",
"description": "Workflow reliability, coordination, and authoring product for AgentWorkforce",
"keywords": [
"agentworkforce",
"ricky",
"workflow",
"agent-relay",
"cli",
"byoh",
"cloud"
],
"homepage": "https://github.com/AgentWorkforce/ricky#readme",
"bugs": {
"url": "https://github.com/AgentWorkforce/ricky/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AgentWorkforce/ricky.git"
},
"packageManager": "npm@11.11.0",
"engines": {
"node": ">=22.14.0"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/sdk/index.d.ts",
"exports": {
".": {
"types": "./dist/sdk/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"ricky": "./dist/ricky.js"
},
"files": [
"dist",
".agents/skills",
"personas",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "node --input-type=module -e \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true });\"",
"bundle": "node scripts/bundle-cli.mjs",
"build": "npm run bundle",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"premerge": "npm run typecheck && npm test && npx vitest run test/local-auto-fix-workflow-failures.e2e.test.ts",
"evals:compile": "node scripts/evals/compile-ricky-evals.mjs",
"evals": "npm run evals:compile && node scripts/evals/run-ricky-evals.mjs",
"evals:provider": "npm run build && npm run evals -- --provider --executor openrouter",
"evals:opencode": "npm run evals:compile && node scripts/evals/run-ricky-evals.mjs --provider --executor opencode",
"evals:list": "npm run evals:compile && node scripts/evals/run-ricky-evals.mjs --list",
"evals:summary": "node scripts/evals/summarize-ricky-evals.mjs",
"evals:compare": "node scripts/evals/compare-ricky-evals.mjs",
"start": "tsx src/surfaces/cli/commands/cli-main.ts",
"dev": "npm start",
"batch": "bash scripts/run-ricky-batch.sh",
"overnight": "bash scripts/run-ricky-overnight.sh",
"prepack": "npm run build"
},
"dependencies": {
"@agent-assistant/turn-context": "^0.4.31",
"@agent-relay/agent": "^6.0.18",
"@agent-relay/cloud": "^6.0.15",
"@agent-relay/personas": "^6.0.18",
"@agent-relay/sdk": "^6.0.15",
"@agentworkforce/harness-kit": "^0.19.0",
"@agentworkforce/workload-router": "^0.19.0",
"@inquirer/prompts": "^8.4.2",
"mdast-util-from-markdown": "^2.0.3",
"ora": "^8.2.0",
"ssh2": "^1.17.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@agent-assistant/telemetry": "^0.4.31",
"@types/mdast": "^4.0.4",
"@types/node": "^24.5.2",
"esbuild": "^0.28.0",
"tsx": "^4.21.0",
"vitest": "^3.2.4"
}
}