-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.82 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
{
"name": "tool-enabled-knowledge-graphs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "bun --bun next dev",
"build": "bun --bun next build",
"start": "bun --bun next start",
"lint": "eslint",
"import:tools": "bun run src/scripts/import-tools-csv.ts",
"embed:tools": "bun run src/scripts/embed-tools.ts",
"neo4j:export": "bash ./scripts/export-neo4j-dump.sh neo4j ./neo4j/exports",
"medgraph:select": "bun run src/scripts/medgraph/select-titles.ts",
"medgraph:extract": "bun run src/scripts/medgraph/extract-entities.ts",
"medgraph:build": "bun run src/scripts/medgraph/build-graph.ts",
"medgraph:embed": "bun run src/scripts/medgraph/embed-graph.ts",
"medgraph:import": "bun run src/scripts/medgraph/import-to-neo4j.ts",
"medgraph:cypher": "bun run src/scripts/medgraph/generate-cypher.ts",
"medgraph:validate-papers": "bun run src/scripts/medgraph/validate-papers.ts",
"medgraph:import-tools": "bun run src/scripts/medgraph/import-tools.ts",
"medgraph:add-tool-params": "bun run src/scripts/medgraph/add-tool-parameters.ts",
"medgraph:discover-tools": "bun run src/scripts/medgraph/discover-tools.ts",
"medgraph:chunk": "bun run src/scripts/medgraph/chunk-papers.ts",
"medgraph:extract-chunks": "bun run src/scripts/medgraph/extract-from-chunks.ts",
"medgraph:summaries": "bun run src/scripts/medgraph/generate-summaries.ts",
"medgraph:merge": "bun run src/scripts/medgraph/merge-similar-nodes.ts",
"medgraph:query": "bun run src/scripts/medgraph/query-graph.ts",
"experiment:questions": "bun run experiment/scripts/generate-questions.ts",
"experiment:mock": "bun run experiment/scripts/generate-mock-data.ts",
"experiment:run": "bun run experiment/scripts/run-experiment.ts",
"experiment:evaluate": "bun run experiment/scripts/evaluate-answers.ts",
"txagent:serve": "cd TxAgent && python server.py",
"dev:all": "set -a && source .env.local && set +a && bun --bun next dev & (cd TxAgent && python server.py) & wait"
},
"dependencies": {
"@ai-sdk/react": "^3.0.88",
"@openrouter/ai-sdk-provider": "^2.2.3",
"@supabase/supabase-js": "^2.97.0",
"ai": "^6.0.86",
"csv-parse": "^6.1.0",
"neo4j-driver": "^6.0.1",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"vega": "^6.2.0",
"vega-embed": "^7.1.0",
"vega-lite": "^6.4.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bun": "^1.3.9",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"typescript": "^5"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
]
}