-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.83 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
{
"name": "@dakera-ai/dakera",
"version": "0.11.102",
"description": "TypeScript/JavaScript SDK for Dakera AI memory platform",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./integrations/tealtiger": {
"types": "./dist/integrations/tealtiger.d.ts",
"import": "./dist/integrations/tealtiger.mjs",
"require": "./dist/integrations/tealtiger.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts src/integrations/tealtiger.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts src/integrations/tealtiger.ts --format cjs,esm --dts --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"agent-memory",
"vector-database",
"knowledge-graph",
"mcp",
"ai-agents",
"self-hosted",
"memory-engine",
"vector-search",
"session-management",
"embeddings",
"langchain",
"crewai",
"dakera",
"ai",
"ml"
],
"author": "Dakera Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dakera-ai/dakera-js.git"
},
"homepage": "https://dakera.ai",
"bugs": {
"url": "https://github.com/dakera-ai/dakera-js/issues"
},
"engines": {
"node": ">=20.12.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.0.0",
"eslint": "^10.1.0",
"tsup": "^8.0.1",
"typescript": "^6.0.0",
"typescript-eslint": "^8.59.3",
"vitest": "^4.1.0"
},
"overrides": {
"vite": ">=8.0.5",
"postcss": ">=8.5.10",
"esbuild": ">=0.28.1"
}
}