-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.35 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.35 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
{
"name": "drift-studio",
"version": "1.0.0",
"description": "Agentic-drift with Agentic Flow and AgentDB integration",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "node --watch index.js",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"format": "prettier --write \"src/**/*.js\" \"tests/**/*.js\" \"*.js\"",
"format:check": "prettier --check \"src/**/*.js\" \"tests/**/*.js\" \"*.js\"",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"keywords": [
"agentic-flow",
"agentdb",
"ai",
"agents",
"vector-database"
],
"author": "",
"license": "MIT",
"dependencies": {
"agentdb": "^1.6.1",
"agentic-flow": "^1.10.2",
"hnswlib-node": "^3.0.0",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.8",
"@vitest/ui": "^4.0.8",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
},
"volta": {
"node": "22.21.1"
},
"overrides": {
"esbuild": "^0.25.0"
}
}