-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.55 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.55 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
{
"name": "mcp-memory-libsql",
"version": "0.0.17",
"description": "LibSQL-based persistent memory tool for MCP with optimized text search",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-memory-libsql": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/spences10/mcp-memory-libsql"
},
"bugs": {
"url": "https://github.com/spences10/mcp-memory-libsql/issues"
},
"homepage": "https://github.com/spences10/mcp-memory-libsql#readme",
"keywords": [
"mcp",
"memory",
"libsql",
"knowledge-graph",
"database",
"text-search",
"knowledge-management",
"relevance-ranking"
],
"scripts": {
"build": "vp pack",
"start": "node dist/index.js",
"dev": "vp pack --watch",
"test": "vp test",
"test:watch": "vp test watch",
"check": "vp check",
"check:fix": "vp check --fix",
"prepare": "pnpm run build",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm run build && changeset publish"
},
"dependencies": {
"@libsql/client": "^0.17.2",
"@tmcp/adapter-valibot": "^0.1.5",
"@tmcp/transport-stdio": "^0.4.2",
"dotenv": "^17.4.0",
"tmcp": "^1.19.3",
"valibot": "^1.3.1"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@types/node": "^25.5.2",
"typescript": "^6.0.2",
"vite-plus": "^0.1.15",
"vitest": "^4.1.2"
},
"volta": {
"node": "24.14.1"
}
}