trustgraph/ts/package.json

72 lines
2.8 KiB
JSON
Raw Normal View History

2026-04-05 21:09:33 -05:00
{
"name": "trustgraph-ts",
"private": true,
"scripts": {
2026-05-12 08:06:58 -05:00
"build": "bunx --bun turbo build",
"dev": "bunx --bun turbo dev",
"lint": "bunx --bun turbo lint && bun run lint:laws",
"lint:laws": "bun scripts/check-effect-laws.ts && bun scripts/inventory-native-classes.ts",
"lint:laws:baseline": "bun scripts/check-effect-laws.ts --write-baseline",
2026-05-12 08:06:58 -05:00
"test": "bunx --bun turbo test",
2026-06-01 23:19:54 -05:00
"check": "bun run check:tsgo",
"check:tsgo": "effect-tsgo patch && tsgo -b tsconfig.json",
2026-06-01 20:26:47 -05:00
"inventory:classes": "bun scripts/inventory-native-classes.ts",
"workbench:qa": "bun run --cwd packages/workbench qa:browser",
2026-05-12 08:06:58 -05:00
"prepare": "effect-tsgo patch",
"clean": "turbo clean",
2026-05-12 08:06:58 -05:00
"gateway": "bun scripts/run-gateway.ts",
"config-svc": "bun scripts/run-config.ts",
"llm:claude": "bun scripts/run-llm-claude.ts",
"llm:openai": "bun scripts/run-llm-openai.ts",
"test:pipeline": "bun scripts/test-pipeline.ts",
"seed": "bun scripts/seed-config.ts",
2026-05-30 09:56:23 -05:00
"seed:flows": "bun scripts/seed-flows.ts",
2026-05-12 08:06:58 -05:00
"prompt": "bun scripts/run-prompt.ts",
"agent": "bun scripts/run-agent.ts",
"librarian": "bun scripts/run-librarian.ts",
"knowledge": "bun scripts/run-knowledge.ts",
"flow-manager": "bun scripts/run-flow-manager.ts",
"llm:ollama": "bun scripts/run-ollama.ts",
"pdf-decoder": "bun scripts/run-pdf-decoder.ts",
"triples-store": "bun scripts/run-triples-store.ts",
"graph-embeddings-store": "bun scripts/run-graph-embeddings-store.ts",
"chunker": "bun scripts/run-chunker.ts",
"extractor": "bun scripts/run-extractor.ts",
"embeddings": "bun scripts/run-embeddings.ts",
"triples-query": "bun scripts/run-triples-query.ts",
"graph-embeddings-query": "bun scripts/run-graph-embeddings-query.ts",
"doc-embeddings-query": "bun scripts/run-doc-embeddings-query.ts",
"graph-rag": "bun scripts/run-graph-rag.ts",
"document-rag": "bun scripts/run-document-rag.ts",
"create-test-pdf": "bun scripts/create-test-pdf.ts",
"seed:demo": "bun scripts/seed-demo.ts",
"mcp-tool": "bun scripts/run-mcp-tool.ts",
"llm:azure-openai": "bun scripts/run-llm-azure-openai.ts",
"llm:openai-compat": "bun scripts/run-llm-openai-compatible.ts",
"llm:mistral": "bun scripts/run-llm-mistral.ts"
2026-04-05 21:09:33 -05:00
},
"devDependencies": {
"@biomejs/biome": "^2",
2026-06-06 10:33:10 -05:00
"@effect/platform-bun": "4.0.0-beta.78",
"@effect/tsgo": "0.14.0",
"@effect/vitest": "4.0.0-beta.78",
2026-05-12 08:06:58 -05:00
"@types/bun": "^1.3.13",
"@types/node": "^25.7.0",
2026-06-01 23:19:54 -05:00
"@typescript/native-preview": "7.0.0-dev.20260511.1",
"falkordb": "^5.0.0",
"nats": "^2.29.0",
"pdf-lib": "^1.17.1",
"tsx": "^4.21.0",
2026-04-05 21:09:33 -05:00
"turbo": "^2.5.0",
2026-05-12 08:06:58 -05:00
"typescript": "^5.8.0",
"vitest": "^4.1.6"
2026-04-05 21:09:33 -05:00
},
2026-05-12 08:06:58 -05:00
"dependencies": {
2026-06-06 10:33:10 -05:00
"effect": "4.0.0-beta.78"
2026-05-12 08:06:58 -05:00
},
"packageManager": "bun@1.3.13",
"workspaces": [
"packages/*"
]
2026-04-05 21:09:33 -05:00
}