-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.91 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
{
"name": "context-engine-ai",
"version": "0.3.0",
"description": "A lightweight context engine for AI agents. Ingest events, build semantic context, query with natural language. Zero config default with SQLite + local TF-IDF embeddings.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"context-engine": "dist/cli.js",
"context-engine-ai": "dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"dev": "tsc --watch",
"start": "node dist/cli.js serve",
"demo": "node dist/cli.js demo"
},
"author": "Oneiro <oneiro-dev@proton.me>",
"license": "MIT",
"keywords": [
"ai",
"context",
"context-engine",
"agents",
"ai-agents",
"mcp",
"model-context-protocol",
"embeddings",
"semantic-search",
"events",
"vector-search",
"tfidf",
"sqlite",
"pgvector",
"llm",
"rag",
"temporal-decay"
],
"homepage": "https://github.com/Quinnod345/context-engine#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Quinnod345/context-engine.git"
},
"bugs": {
"url": "https://github.com/Quinnod345/context-engine/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Quinnod345"
},
"dependencies": {
"better-sqlite3": "^11.0.0",
"commander": "^13.0.0",
"express": "^5.0.1",
"openai": "^4.0.0",
"pg": "^8.13.0",
"pgvector": "^0.2.0",
"uuid": "^11.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/pg": "^8.11.0",
"@types/uuid": "^10.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18"
}
}