forked from viplismism/rlm-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.33 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.33 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
{
"name": "rlm-cli",
"version": "0.4.19",
"description": "Standalone CLI for Recursive Language Models (RLMs) — implements Algorithm 1 from arXiv:2512.24601",
"type": "module",
"bin": {
"rlm": "./bin/rlm.mjs"
},
"main": "dist/main.js",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/runtime.py",
"bin"
],
"scripts": {
"dev": "tsx src/main.ts",
"build": "tsc && cp src/runtime.py dist/",
"start": "node dist/main.js",
"cli": "tsx src/cli.ts",
"bench:oolong": "tsx benchmarks/oolong_synth.ts",
"bench:longbench": "tsx benchmarks/longbench_narrativeqa.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"rlm",
"recursive-language-model",
"llm",
"cli",
"agent",
"ai",
"long-context",
"python",
"repl"
],
"author": "Vipul Maheshwari <vim.code.level@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/viplismism/rlm-cli.git"
},
"homepage": "https://github.com/viplismism/rlm-cli",
"bugs": "https://github.com/viplismism/rlm-cli/issues",
"dependencies": {
"@mariozechner/pi-ai": "^0.55.1"
},
"devDependencies": {
"esbuild": "^0.27.3",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20"
},
"overrides": {
"minimatch": ">=10.2.1"
}
}