-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 725 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 725 Bytes
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
{
"name": "memory-claw-monorepo",
"version": "0.0.1",
"private": true,
"description": "Universal Memory & Context Engine for LLMs",
"repository": {
"type": "git",
"url": "https://github.com/tostechbr/memory-claw.git"
},
"author": "Tiago Santos",
"license": "MIT",
"packageManager": "pnpm@10.22.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"tsx": "^4.21.0",
"turbo": "^2.0.0",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}