trustgraph/ts/package.json
2026-06-01 23:19:54 -05:00

69 lines
2.6 KiB
JSON

{
"name": "trustgraph-ts",
"private": true,
"scripts": {
"build": "bunx --bun turbo build",
"dev": "bunx --bun turbo dev",
"lint": "bunx --bun turbo lint",
"test": "bunx --bun turbo test",
"check": "bun run check:tsgo",
"check:tsgo": "effect-tsgo patch && tsgo -b tsconfig.json",
"inventory:classes": "bun scripts/inventory-native-classes.ts",
"workbench:qa": "bun run --cwd packages/workbench qa:browser",
"prepare": "effect-tsgo patch",
"clean": "turbo clean",
"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",
"seed:flows": "bun scripts/seed-flows.ts",
"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"
},
"devDependencies": {
"@effect/platform-bun": "4.0.0-beta.75",
"@effect/tsgo": "0.13.0",
"@effect/vitest": "4.0.0-beta.75",
"@types/bun": "^1.3.13",
"@types/node": "^25.7.0",
"@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",
"turbo": "^2.5.0",
"typescript": "^5.8.0",
"vitest": "^4.1.6"
},
"dependencies": {
"effect": "4.0.0-beta.75"
},
"packageManager": "bun@1.3.13",
"workspaces": [
"packages/*"
]
}