-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.32 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
94
95
96
{
"name": "@corbits/memory",
"version": "0.1.2",
"description": "Mountable memory add/search/list SDK for Interchange hubs — includes resident distiller",
"exports": {
".": "./src/index.ts",
"./migrations": "./src/migrations.ts",
"./config": "./src/mount-config.ts",
"./tools": "./src/tools/index.ts",
"./distiller": "./src/distiller/index.ts"
},
"interchange": {
"tools": "./src/tools/index.ts",
"grantRequirements": [
{
"resource": "memory",
"action": "add",
"installHint": "tenant",
"surfaces": ["tools", "distiller", "routes"]
},
{
"resource": "memory",
"action": "search",
"installHint": "tenant",
"surfaces": ["tools", "distiller", "routes"]
},
{
"resource": "memory",
"action": "forget",
"installHint": "creator",
"surfaces": ["routes"]
},
{
"resource": "memory",
"action": "purge",
"installHint": "creator",
"surfaces": ["routes"]
}
]
},
"license": "LGPL-2.1-only",
"type": "module",
"module": "src/index.ts",
"engines": {
"bun": ">=1.2.0"
},
"scripts": {
"db:setup": "bun run scripts/db-setup.ts",
"typecheck": "tsc --noEmit",
"test": "bun test ./src",
"test:coverage": "bun test --coverage --coverage-reporter=lcov --coverage-reporter=text ./src"
},
"dependencies": {
"@intx/agent": "0.2.2",
"@intx/authz": "0.2.2",
"@intx/hub-api": "0.2.2",
"@intx/log": "0.2.2",
"@intx/workflow": "0.2.2",
"arktype": "^2.1.29",
"drizzle-orm": "^0.45.1",
"hono": "^4.9.0",
"hono-openapi": "^1.3.1",
"postgres": "^3.4.7"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.9.0"
},
"author": "Sawyer Cutler <sawyer@dirtroad.dev>",
"repository": {
"type": "git",
"url": "git+https://github.com/corbitsdev/corbits-memory.git"
},
"homepage": "https://github.com/corbitsdev/corbits-memory#readme",
"bugs": {
"url": "https://github.com/corbitsdev/corbits-memory/issues"
},
"keywords": [
"knowledge",
"rag",
"search",
"pgvector",
"interchange",
"hono"
],
"files": [
"src",
"!src/**/*.test.ts",
"migrations",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}