-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.13 KB
/
package.json
File metadata and controls
53 lines (53 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
45
46
47
48
49
50
51
52
53
{
"name": "@cephalization/math",
"version": "1.1.0",
"author": "Tony Powell <powell.anthonyd@proton.me>",
"access": "public",
"repository": {
"type": "git",
"url": "https://github.com/cephalization/math"
},
"homepage": "https://github.com/cephalization/math",
"bugs": {
"url": "https://github.com/cephalization/math/issues"
},
"description": "Multi-Agent Todo Harness - A light meta agent orchestration harness",
"type": "module",
"bin": {
"math": "./index.ts"
},
"files": [
"index.ts",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.html",
"README.md"
],
"scripts": {
"start": "bun index.ts",
"test": "bun test",
"typecheck": "tsc --noEmit",
"changeset": "bunx changeset"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/bun": "latest",
"typescript": "^5"
},
"keywords": [
"ai",
"agent",
"multi-agent",
"todo",
"orchestration",
"bun"
],
"license": "MIT",
"dependencies": {
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"zod": "^4.3.6"
}
}