forked from marlandoj/zouroboros
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.13 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
{
"name": "zouroboros",
"version": "2.0.0",
"description": "A self-enhancing AI memory and orchestration system for Zo Computer",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r build",
"postbuild": "pnpm install --frozen-lockfile 2>/dev/null; bun cli/dist/index.js init 2>/dev/null; bun cli/dist/index.js doctor",
"dev": "pnpm -r dev",
"test": "pnpm -r test",
"lint": "pnpm -r lint",
"typecheck": "pnpm -r typecheck",
"clean": "pnpm -r clean && rm -rf node_modules",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"keywords": [
"ai",
"memory",
"orchestration",
"swarm",
"personas",
"zocomputer"
],
"repository": {
"type": "git",
"url": "https://github.com/marlandoj/zouroboros.git"
},
"author": "marlandoj",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/bun": "latest",
"@types/node": "^20.11.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0"
}