-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.13 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.13 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
{
"name": "rllm",
"version": "1.0.0",
"description": "TypeScript port of Recursive Language Models (RLMs) - a task-agnostic inference paradigm for handling near-infinite length contexts",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"type": "module",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/code-rabi/rllm.git"
},
"bugs": {
"url": "https://github.com/code-rabi/rllm/issues"
},
"homepage": "https://github.com/code-rabi/rllm#readme",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./cjs": {
"types": "./dist/cjs/index.d.ts",
"require": "./dist/cjs/index.js"
},
"./esm": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js"
}
},
"scripts": {
"build": "rm -rf dist && tsc && tsc -p tsconfig.cjs.json && node scripts/fix-cjs.mjs",
"dev": "tsc --watch",
"lint": "oxlint src",
"test": "vitest run",
"example": "tsx examples/quickstart.ts",
"example:schema": "tsx examples/schema-context.ts"
},
"keywords": [
"llm",
"recursive",
"language-model",
"ai",
"openai",
"anthropic",
"inference"
],
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^16.4.5",
"openai": "^4.76.0",
"uuid": "^11.0.3"
},
"peerDependencies": {
"zod": "^3.20.0 || ^4.0.0"
},
"peerDependenciesMeta": {
"zod": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"open": "^11.0.0",
"oxlint": "^1.37.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"ws": "^8.19.0",
"zod": "^3.25.76"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
}
}