-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.79 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.79 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
{
"name": "secondlayer",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": ["packages/*", "apps/*"],
"scripts": {
"build": "bun run build:stacks && bun run build:docs && bun run build:shared && bun run build:subgraphs && bun run build:bundler && bun run build:scaffold && bun run build:sdk && bun run build:mcp && bun run build:cli",
"build:bundler": "bun run --filter @secondlayer/bundler build",
"build:cli": "bun run --filter @secondlayer/cli build",
"build:mcp": "bun run --filter @secondlayer/mcp build",
"build:scaffold": "bun run --filter @secondlayer/scaffold build",
"build:sdk": "bun run --filter @secondlayer/sdk build",
"build:stacks": "bun run --filter @secondlayer/stacks build",
"build:subgraphs": "bun run --filter @secondlayer/subgraphs build",
"build:shared": "bun run --filter @secondlayer/shared build",
"build:docs": "bun run --filter @secondlayer/clarity-docs build",
"start": "bash scripts/dev.sh",
"db": "docker compose -f docker/docker-compose.dev.yml up -d --wait",
"db:stop": "docker compose -f docker/docker-compose.dev.yml down",
"db:reset": "docker compose -f docker/docker-compose.dev.yml down -v && bun run db && bun run migrate",
"migrate": "DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:5432/secondlayer bun run packages/shared/src/db/migrate.ts",
"dev": "bun run --filter '*' dev",
"test": "bun run --filter '*' test",
"test:cli": "bun run --filter @secondlayer/cli test",
"test:ops": "bun test tools/ops/agent tools/ops/konsole",
"test:stacks": "bun run --filter @secondlayer/stacks test",
"test:docs": "bun run --filter @secondlayer/clarity-docs test",
"typecheck": "bun run --filter '*' typecheck",
"typecheck:ops": "bun run --cwd tools/ops/agent typecheck && bun run --cwd tools/ops/konsole typecheck",
"typecheck:docs": "bun run --filter @secondlayer/clarity-docs typecheck",
"konsole": "DATABASE_URL=${DATABASE_URL:-postgresql://postgres:postgres@127.0.0.1:5432/secondlayer} bun run tools/ops/konsole/src/index.ts",
"clean": "rm -rf packages/*/dist packages/*/node_modules tools/ops/*/dist tools/ops/*/node_modules node_modules",
"changeset": "changeset",
"version": "changeset version",
"release": "bun run build && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@types/node": "^20.11.0",
"@types/pluralize": "^0.0.33",
"bunup": "^0.9.0",
"expect-type": "1.3.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.19.0"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.63",
"@anthropic-ai/sdk": "^0.78.0",
"marked": "17.0.4",
"pluralize": "^8.0.0",
"zod": "^4.3.6"
},
"overrides": {
"ai": "6.0.167",
"@ai-sdk/anthropic": "3.0.71",
"@ai-sdk/provider-utils": "4.0.23"
}
}