-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 2.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 2.05 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
{
"name": "theseus",
"private": true,
"description": "Open-source packages powering the Theseus agent harness.",
"repository": {
"type": "git",
"url": "https://github.com/theseus-run/theseus"
},
"homepage": "https://theseus.run",
"workspaces": {
"packages": [
"packages/*"
],
"catalogs": {
"effect": {
"effect": "4.0.0-beta.59",
"@effect/platform-bun": "4.0.0-beta.59",
"@effect/sql-sqlite-bun": "4.0.0-beta.59",
"@effect/language-service": "0.80.0"
}
}
},
"scripts": {
"dev": "bun run --parallel dev:server dev:web",
"dev:server": "THESEUS_PORT=4800 bun --watch packages/theseus-server/src/index.ts .",
"dev:web": "bun run --cwd packages/icarus-web dev",
"docs:check": "bun run scripts/docs-check.ts",
"effect:diagnostics": "bunx effect-language-service diagnostics --project packages/theseus-core/tsconfig.json && bunx effect-language-service diagnostics --project packages/theseus-tools/tsconfig.json && bunx effect-language-service diagnostics --project packages/theseus-runtime/tsconfig.json && bunx effect-language-service diagnostics --project packages/theseus-server/tsconfig.json && bunx effect-language-service diagnostics --project packages/jsx-md/tsconfig.json && bunx effect-language-service diagnostics --project packages/jsx-md-beautiful-mermaid/tsconfig.json",
"effect:ls:check": "bunx effect-language-service check",
"effect:ls:patch": "bunx effect-language-service patch",
"lint": "bunx biome check",
"test": "bun test",
"typecheck": "bunx tsc -p packages/theseus-core/tsconfig.json --noEmit && bunx tsc -p packages/theseus-tools/tsconfig.json --noEmit && bunx tsc -p packages/theseus-runtime/tsconfig.json --noEmit && bunx tsc -p packages/theseus-server/tsconfig.json --noEmit && bunx tsc -p packages/jsx-md/tsconfig.json --noEmit && bunx tsc -p packages/jsx-md-beautiful-mermaid/tsconfig.json --noEmit"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@effect/language-service": "catalog:effect",
"typescript": "6.0.3"
}
}