-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.56 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
{
"name": "vecfs",
"version": "0.1.1",
"description": "VecFS (Vector File System) is a lightweight, local-first vector storage specification and implementation designed for AI agent long-term memory.",
"main": "dist/mcp-server.js",
"bin": {
"vecfs": "dist/mcp-server.js"
},
"files": [
"dist/",
"vecfs-memory/",
"README.md",
"LICENSE"
],
"scripts": {
"check": "tsc --noEmit",
"build": "rm -rf dist && tsc --noEmit && node esbuild.config.mjs",
"start": "node dist/mcp-server.js",
"test": "vitest run",
"test:integration": "vitest run --testTimeout 30000 integration.test.ts",
"test:http": "npm run build && vitest run --testTimeout 30000 http-integration.test.ts",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WazzaMo/vecfs.git"
},
"keywords": [
"vecfs",
"vector",
"sparse-vector",
"mcp",
"model-context-protocol",
"agent-memory",
"long-term-memory",
"local-first"
],
"author": "Warwick Molloy",
"license": "Apache-2.0",
"type": "module",
"bugs": {
"url": "https://github.com/WazzaMo/vecfs/issues"
},
"homepage": "https://github.com/WazzaMo/vecfs#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"cors": "^2.8.6",
"express": "^5.2.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.2.3",
"esbuild": "^0.27.3",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}