forked from tung-lee/contextMeM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.17 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
{
"name": "contextmem",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "bun@1.3.6",
"description": "Walrus-native web context extraction, packaging, and memory tools for agents.",
"engines": {
"bun": ">=1.3.0",
"node": ">=24"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently \"CONTEXTMEM_API_PORT=8791 bun run --filter @contextmem/api dev\" \"VITE_CONTEXTMEM_API_BASE=http://localhost:8791 bun run --filter @contextmem/web dev\"",
"dev:api": "CONTEXTMEM_API_PORT=8791 bun run --filter @contextmem/api dev",
"dev:web": "VITE_CONTEXTMEM_API_BASE=http://localhost:8791 bun run --filter @contextmem/web dev",
"contextmem": "bun packages/cli/src/index.ts",
"mcp:start": "bun packages/mcp/src/index.ts",
"typecheck": "bun run --filter './packages/*' typecheck && bun run --filter './apps/*' typecheck",
"test": "CONTEXTMEM_ALLOW_PLACEHOLDER_HOSTS=true vitest run",
"build": "bun run --filter './packages/*' build && bun run --filter './apps/*' build",
"check": "bun run typecheck && bun run test",
"clean": "rm -rf node_modules bun.lock apps/web/dist runs/example-smoke"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.23.0",
"@mozilla/readability": "^0.6.0",
"@mysten/sui": "^2.9.1",
"@react-three/fiber": "^9.6.1",
"@vitejs/plugin-react": "^5.1.1",
"agents": "^0.13.2",
"cheerio": "^1.1.2",
"commander": "^14.0.2",
"concurrently": "^9.2.1",
"css-tree": "^3.2.1",
"fast-xml-parser": "^5.3.2",
"fastify": "^5.6.2",
"jsdom": "^27.2.0",
"lucide-react": "^1.16.0",
"motion": "^12.40.0",
"nanoid": "^5.1.6",
"p-limit": "^7.2.0",
"playwright": "^1.60.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.15.1",
"three": "^0.184.0",
"turndown": "^7.2.2",
"zod": "^4.2.0"
},
"devDependencies": {
"@types/css-tree": "^2.3.11",
"@types/jsdom": "^28.0.3",
"@types/node": "^25.0.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/turndown": "^5.0.5",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"vitest": "^4.0.16"
}
}