-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.31 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
91
92
93
94
95
96
{
"name": "openhorse",
"version": "0.2.26",
"description": "OpenHorse - Universal Agent Harness Framework. A complete coding CLI agent with tools, MCP, memory system.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"openhorse": "bin/openhorse"
},
"files": [
"dist/",
"bin/",
"LICENSE",
"README.md"
],
"scripts": {
"start": "ts-node src/cli.ts",
"dev": "nodemon src/cli.ts",
"cli": "ts-node src/cli.ts",
"build": "tsc",
"test": "jest",
"lint": "eslint src/",
"format": "prettier --write src/",
"prepublishOnly": "npm run build && npm test -- --runInBand"
},
"keywords": [
"agent",
"ai",
"coding-agent",
"cli-agent",
"llm",
"openai",
"claude",
"mcp",
"harness",
"automation",
"coding-assistant",
"developer-tools"
],
"author": "Linux2010",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Linux2010/openhorse.git"
},
"homepage": "https://github.com/Linux2010/openhorse#readme",
"bugs": {
"url": "https://github.com/Linux2010/openhorse/issues"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@types/better-sqlite3": "^7.6.13",
"auto-bind": "^5.0.1",
"axios": "^1.6.0",
"better-sqlite3": "^12.10.0",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"dotenv": "^16.6.1",
"eventemitter3": "^5.0.1",
"figlet": "^1.11.0",
"ink": "^3.2.0",
"js-yaml": "^4.1.1",
"lodash-es": "^4.18.1",
"marked": "^11.2.0",
"marked-terminal": "^6.2.0",
"openai": "^4.0.0",
"react": "^17.0.2",
"signal-exit": "^4.1.0",
"sqlite-vec": "^0.1.9",
"string-width": "^4.2.3",
"throttle": "^1.0.3",
"type-fest": "^5.6.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.0.0",
"@types/react": "^17.0.83",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.2",
"jest": "^29.7.0",
"nodemon": "^3.0.0",
"prettier": "^3.1.0",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}