-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 973 Bytes
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 973 Bytes
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
{
"name": "ai-memory",
"version": "1.0.0",
"description": "AI Memory Module - Vector-based memory system for AI agents",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:ui": "playwright test --ui",
"test:report": "playwright show-report",
"test:debug": "playwright test --debug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hidden-History/ai-memory.git"
},
"keywords": [
"ai",
"memory",
"vector-database",
"qdrant",
"embeddings",
"claude"
],
"author": "BMAD Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hidden-History/ai-memory/issues"
},
"homepage": "https://github.com/Hidden-History/ai-memory#readme",
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/node": "^25.0.9",
"typescript": "^5.9.3"
}
}