-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.45 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
{
"name": "@automagik/rlmx",
"version": "0.260528.2",
"description": "RLM algorithm SDK for coding agents \u2014 prompt externalization, Python REPL with symbolic recursion, code-driven navigation",
"type": "module",
"publishConfig": {
"access": "public"
},
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist/src",
"src/templates",
"python/*.py",
"examples"
],
"scripts": {
"build": "tsc && cp src/benchmark-data.json dist/src/ && rm -rf dist/src/templates && cp -r src/templates dist/src/templates",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"test": "node --test dist/tests/*.test.js",
"prepare": "node scripts/prepare.mjs",
"bump-version": "node scripts/version.mjs",
"check": "tsc --noEmit",
"install:local": "bash scripts/install.sh"
},
"dependencies": {
"@earendil-works/pi-ai": "0.77.0",
"js-yaml": "^4.1.1",
"pg": "^8.20.0",
"pgserve": "^1.1.10"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@types/pg": "^8.11.0",
"husky": "^9.0.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=22.19.0"
},
"keywords": [
"rlm",
"llm",
"repl",
"research",
"agent"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/automagik-dev/rlmx.git"
}
}