-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.33 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@swirls/aboard",
"version": "0.1.0",
"description": "Manage and observe agentic onboarding flows. Declare the steps an AI agent should take to onboard a user, mount them as endpoints, generate a 'copy to deploy' prompt, and track every session.",
"type": "module",
"license": "MIT",
"author": "ByteSlice LLC, DBA Swirls.ai",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./adapters/memory": {
"types": "./dist/adapters/memory.d.ts",
"import": "./dist/adapters/memory.js"
},
"./adapters/sqlite": {
"types": "./dist/adapters/sqlite.d.ts",
"import": "./dist/adapters/sqlite.js"
},
"./adapters/pg": {
"types": "./dist/adapters/pg.d.ts",
"import": "./dist/adapters/pg.js"
}
},
"files": [
"dist",
"README.md",
"docs/SPEC.md",
"LICENSE"
],
"keywords": [
"agent",
"onboarding",
"ai",
"llm",
"agentic",
"observability",
"claude",
"mcp",
"developer-tools"
],
"publishConfig": {
"access": "public"
},
"engines": {
"bun": ">=1.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json",
"test": "bun test",
"demo": "bun run examples/demo.ts",
"demo:proxy": "bun run examples/demo-proxy.ts",
"demo:migrate": "IDENTITY_DB=packages/identity/identity.sqlite bun run packages/identity/migrate.ts",
"demo:reset": "rm -f packages/identity/identity.sqlite* packages/identity/aboard.sqlite* && echo 'wiped identity.sqlite + aboard.sqlite'",
"demo:api": "bun run packages/identity/orders-api-server.ts",
"demo:identity": "IDENTITY_URL=http://localhost:3000 ABOARD_URL=http://localhost:3000 IDENTITY_DB=packages/identity/identity.sqlite ABOARD_DB=packages/identity/aboard.sqlite ORDERS_API_URL=http://localhost:5055 bun run packages/identity/aboard-server.ts",
"demo:up": "bun run demo:migrate && (bun run demo:api & bun run demo:identity & wait)",
"demo:agent:register": "ABOARD_URL=http://localhost:3000 bun run packages/identity/cli.ts register",
"demo:agent:get": "ABOARD_URL=http://localhost:3000 bun run packages/identity/cli.ts get",
"demo:agent:post": "ABOARD_URL=http://localhost:3000 bun run packages/identity/cli.ts post",
"demo:agent:delegate": "ABOARD_URL=http://localhost:3000 bun run packages/identity/cli.ts delegate",
"demo:agent:delegate-approval": "ABOARD_URL=http://localhost:3000 bun run packages/identity/cli.ts delegate-approval",
"demo:subagent:get": "ABOARD_URL=http://localhost:3000 bun run packages/identity/cli.ts sub-get",
"demo:subagent:post": "ABOARD_URL=http://localhost:3000 bun run packages/identity/cli.ts sub-post",
"demo:agentic": "ABOARD_URL=http://localhost:3000 bun run packages/identity/agentic.ts",
"demo:chat": "ABOARD_URL=http://localhost:3000 bun run packages/identity/chat.ts",
"example": "bun run examples/server.ts",
"example:agent": "bun run examples/agent.ts",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@aboard/macaroon": "workspace:*",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5"
}
}