-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.67 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
{
"name": "@corvidlabs/agent3md",
"version": "1.0.0",
"description": "agent.3md: one 3md file is a whole agent (identity + on-demand skills). Loader, validator, router, and MCP-ready, on the canonical 3md parser.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CorvidLabs/agent-3md.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"src/index.ts",
"src/runtime.ts",
"src/validate.ts",
"src/threemd.ts",
"SPEC.md",
"agent.3md",
"README.md"
],
"publishConfig": { "access": "public" },
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node --format esm && tsc -p tsconfig.build.json",
"prepublishOnly": "bun run build",
"demo": "bun run src/demo.ts",
"run": "bun run src/run.ts",
"benchmark": "bun run src/benchmark.ts",
"scale": "bun run src/scale/scale-bench.ts",
"scale2": "bun run src/scale/scale-bench2.ts",
"validate": "bun run src/validate.ts",
"test": "bun test",
"cli": "bun run src/cli.ts",
"new": "bun run src/cli.ts new",
"export": "bun run src/export.ts",
"integration": "bun run src/integration-demo.ts",
"mcp": "bun run src/mcp.ts",
"mcp:selftest": "bun run src/mcp-selftest.ts",
"gen:agents": "bun run src/scale/gen-big-agent.ts",
"loaders:rust": "cd loaders/rust && cargo run -q",
"loaders:swift": "cd loaders/swift && swift run"
},
"devDependencies": {
"@types/node": "^26.0.1",
"bun-types": "^1.3.14",
"typescript": "^6.0.3"
}
}