-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.28 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
{
"name": "ralph-research",
"version": "0.1.6",
"description": "Local-first runtime for recursive research improvement.",
"type": "module",
"bin": {
"rrx": "dist/cli/main.js"
},
"files": [
"dist",
"templates",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli/main.ts",
"mcp": "tsx src/mcp/main.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit -p tsconfig.json"
},
"keywords": [
"research",
"ratchet",
"cli",
"mcp",
"agent",
"llm",
"local-first",
"typescript",
"nodejs",
"codex"
],
"license": "MIT",
"author": "coyaSONG",
"homepage": "https://github.com/coyaSONG/ralph-research#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/coyaSONG/ralph-research.git"
},
"bugs": {
"url": "https://github.com/coyaSONG/ralph-research/issues"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.4",
"commander": "^15.0.0",
"execa": "^9.6.0",
"pino": "^10.0.0",
"yaml": "^2.8.1",
"zod": "^4.1.11"
},
"devDependencies": {
"@types/node": "^26.1.1",
"tsx": "^4.20.6",
"typescript": "^7.0.2",
"vitest": "^4.1.9"
}
}