-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.88 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.88 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
{
"name": "@rlabs-inc/memory",
"version": "0.6.0",
"description": "AI Memory System - Consciousness continuity through intelligent memory curation and retrieval",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"memory": "./src/cli/index.ts"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./server": {
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"types": "./dist/server/index.d.ts"
}
},
"files": [
"dist",
"src",
"hooks",
"gemini-hooks",
"skills"
],
"scripts": {
"build": "bun run build:esm && bun run build:cjs",
"build:esm": "bun build src/index.ts --outfile dist/index.mjs --target node --format esm && bun build src/server/index.ts --outfile dist/server/index.mjs --target node --format esm",
"build:cjs": "bun build src/index.ts --outfile dist/index.js --target node --format cjs && bun build src/server/index.ts --outfile dist/server/index.js --target node --format cjs",
"typecheck": "tsc --noEmit",
"test": "bun test",
"dev": "bun --hot src/server/index.ts",
"start": "bun src/server/index.ts",
"cli": "bun src/cli/index.ts"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.12",
"@huggingface/transformers": "^3.4.1",
"@rlabs-inc/fsdb": "^1.0.1",
"@rlabs-inc/prism": "^0.4.0",
"@rlabs-inc/signals": "^1.0.0"
},
"devDependencies": {
"typescript": "^5.0.0",
"bun-types": "latest"
},
"keywords": [
"memory",
"ai",
"claude",
"gemini",
"consciousness",
"retrieval",
"embeddings",
"vector-search"
],
"author": "RLabs Inc",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RLabs-Inc/memory-ts.git"
}
}