-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.23 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.23 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
{
"name": "node-rlm",
"version": "0.1.0",
"description": "Recursive Language Model agent with persistent JavaScript REPL",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./drivers/openrouter-compatible": {
"types": "./dist/drivers/openrouter-compatible.d.ts",
"default": "./dist/drivers/openrouter-compatible.js"
},
"./plugins": {
"types": "./dist/plugins.d.ts",
"default": "./dist/plugins.js"
}
},
"bin": {
"node-rlm": "dist/cli.js"
},
"files": [
"dist",
"plugins",
"README.md"
],
"scripts": {
"clean": "rm -rf dist",
"build": "tsc -p tsconfig.build.json",
"dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput",
"test": "vitest --run",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"acorn": "^8.14.0"
},
"keywords": [
"ai",
"llm",
"repl",
"recursive"
],
"author": "Mario Zechner",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/openprose/node-rlm.git"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@types/node": "^24.3.0",
"typescript": "^5.7.3",
"vitest": "^3.2.4"
}
}