-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.89 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.89 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "smithers-orchestrator",
"version": "0.12.8",
"description": "AI workflow orchestration with JSX",
"author": "William Cory",
"license": "MIT",
"module": "src/index.ts",
"type": "module",
"bin": {
"smithers": "src/cli/index.ts"
},
"exports": {
".": "./src/index.ts",
"./jsx-runtime": "./src/jsx-runtime.ts",
"./jsx-dev-runtime": "./src/jsx-runtime.ts",
"./tools": "./src/tools/index.ts",
"./server": "./src/server/index.ts",
"./observability": "./src/observability/index.ts",
"./pi-plugin": "./src/pi-plugin/index.ts",
"./pi-extension": "./src/pi-plugin/extension.ts",
"./mdx-plugin": "./src/mdx-plugin.ts",
"./baml-plugin": "./src/baml-plugin.ts",
"./dom/renderer": "./src/dom/renderer.ts",
"./linear": "./src/linear/index.ts"
},
"files": [
"src/",
"docs/",
"observability/",
"README.md",
"LICENSE"
],
"engines": {
"bun": ">=1.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evmts/smithers.git"
},
"homepage": "https://github.com/evmts/smithers#readme",
"bugs": {
"url": "https://github.com/evmts/smithers/issues"
},
"keywords": [
"ai",
"agent",
"react",
"jsx",
"llm",
"claude",
"orchestration",
"workflow",
"bun"
],
"scripts": {
"typecheck": "tsc --noEmit",
"cli": "bun run src/cli/index.ts",
"test": "bun test tests/*.test.ts tests/*.test.tsx",
"test:baml-live": "SMITHERS_BAML_LIVE_E2E=1 bun test tests/baml-live.e2e.test.ts",
"e2e": "playwright test",
"docs": "cd docs && bunx mintlify dev"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.36",
"@ai-sdk/openai": "^3.0.41",
"@effect/opentelemetry": "^0.61.0",
"@effect/platform": "^0.94.5",
"@effect/platform-bun": "^0.87.1",
"@effect/sql": "^0.49.0",
"@mdx-js/esbuild": "^3.1.1",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.213.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.213.0",
"@opentelemetry/resources": "^2.6.0",
"@opentelemetry/sdk-logs": "^0.213.0",
"@opentelemetry/sdk-metrics": "^2.6.0",
"@opentelemetry/sdk-trace-base": "^2.6.0",
"@opentelemetry/sdk-trace-node": "^2.6.0",
"@opentelemetry/semantic-conventions": "^1.40.0",
"@toon-format/toon": "^2.1.0",
"@types/react-dom": "^19.2.3",
"@types/react-reconciler": "^0.28.9",
"ai": "^6.0.69",
"bippy": "^0.5.32",
"diff": "^5.2.0",
"drizzle-orm": "^0.45.1",
"drizzle-zod": "^0.8.3",
"effect": "^3.19.19",
"incur": "^0.3.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-reconciler": "^0.31.0",
"zod": "^4.3.6"
},
"peerDependencies": {
"typescript": "^5"
},
"devDependencies": {
"@boundaryml/baml": "0.220.0",
"@playwright/test": "^1.52.0",
"@types/bun": "latest",
"@types/diff": "^5.2.0",
"@types/react": "^19.2.10"
}
}