forked from Keyoku-ai/keyoku
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.22 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
{
"name": "keyoku",
"version": "1.3.0",
"description": "TypeScript SDK for AI memory — auto-recall, auto-capture, and intelligent heartbeat",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/keyoku-ai/keyoku.git"
},
"homepage": "https://github.com/keyoku-ai/keyoku",
"bugs": {
"url": "https://github.com/keyoku-ai/keyoku/issues"
},
"keywords": [
"ai",
"memory",
"agents",
"semantic-search",
"vector-search",
"llm",
"openclaw"
],
"license": "MIT",
"workspaces": [
"packages/types",
"packages/memory",
"packages/openclaw"
],
"scripts": {
"build": "npm run build --workspaces",
"clean": "rm -rf packages/*/dist",
"test": "vitest run",
"lint": "eslint packages/*/src",
"format": "prettier --write 'packages/*/src/**/*.ts'",
"format:check": "prettier --check 'packages/*/src/**/*.ts'"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^25.4.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vitest": "^4.0.18"
}
}