-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 4.01 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 4.01 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@nehloo/graphnosis",
"version": "0.8.0",
"description": "AI-native dual-graph knowledge representation \u2014 build, query, and persist typed knowledge graphs in-process.",
"author": "Nehloo Interactive LLC",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/nehloo/Graphnosis.git"
},
"main": "dist/sdk/index.js",
"types": "dist/sdk/index.d.ts",
"exports": {
".": {
"types": "./dist/sdk/index.d.ts",
"default": "./dist/sdk/index.js"
},
"./adapters/openai": {
"types": "./dist/sdk/adapters/openai.d.ts",
"default": "./dist/sdk/adapters/openai.js"
},
"./adapters/static": {
"types": "./dist/sdk/adapters/static.d.ts",
"default": "./dist/sdk/adapters/static.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE",
"NOTICE"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"build:lib": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json && node -e \"require('fs').writeFileSync('dist/package.json', JSON.stringify({type:'module'}))\"",
"prepare": "npm run build:lib",
"lint:lib": "eslint src/core src/sdk",
"prepublishOnly": "npm run lint:lib && npm run build:lib && npm test",
"longmemeval:smoke": "tsx tests/longmemeval/official/run.ts --limit 20",
"longmemeval:smoke:embeddings": "tsx tests/longmemeval/official/run.ts --limit 20 --retrieval embeddings",
"longmemeval:smoke:hybrid": "tsx tests/longmemeval/official/run.ts --limit 20 --retrieval hybrid",
"longmemeval:smoke:premium": "tsx tests/longmemeval/official/run.ts --limit 20 --retrieval hybrid --answer-model gpt-4o",
"longmemeval:real": "tsx tests/longmemeval/official/run.ts",
"longmemeval:real:embeddings": "tsx tests/longmemeval/official/run.ts --retrieval embeddings",
"longmemeval:real:hybrid": "tsx tests/longmemeval/official/run.ts --retrieval hybrid",
"longmemeval:real:premium": "tsx tests/longmemeval/official/run.ts --retrieval hybrid --answer-model gpt-4o",
"longmemeval:audit:multisession": "tsx tests/longmemeval/official/audit-multisession.ts",
"mcp": "tsx src/mcp/server.ts",
"mcp:http": "MCP_TRANSPORT=http tsx src/mcp/server.ts",
"test": "tsx tests/unit/synonym-expander.test.ts && tsx tests/unit/traversal-determinism.test.ts && tsx tests/unit/loader-index-parity.test.ts"
},
"peerDependencies": {
"@ai-sdk/openai": ">=3.0.0",
"ai": ">=6.0.0"
},
"peerDependenciesMeta": {
"@ai-sdk/openai": {
"optional": true
},
"ai": {
"optional": true
}
},
"dependencies": {
"cheerio": "^1.1.0",
"exifr": "^7.1.3",
"msgpackr": "^1.11.9",
"music-metadata": "^11.12.3",
"nanoid": "^5.1.7",
"papaparse": "^5.5.3",
"remark": "^15.0.1",
"remark-parse": "^11.0.0",
"unified": "^11.0.5",
"unpdf": "^1.6.2",
"wtf_wikipedia": "^10.4.1",
"xxhash-wasm": "^1.1.0",
"zod": "^4.3.6"
},
"optionalDependencies": {
"better-sqlite3": "^12.8.0"
},
"overrides": {
"postcss": ">=8.5.10",
"tar-stream": ">=3.0.0"
},
"devDependencies": {
"@ai-sdk/openai": "^3.0.52",
"@ai-sdk/react": "^3.0.160",
"@modelcontextprotocol/sdk": "^1.29.0",
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/node": "^20",
"@types/papaparse": "^5.5.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"ai": "^6.0.158",
"eslint": "^9",
"eslint-config-next": "16.2.3",
"express": "^5.2.1",
"fastembed": "^2.1.0",
"next": "16.2.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-force-graph-2d": "^1.29.1",
"tailwindcss": "^4",
"tsc-alias": "^1.8.16",
"tsx": "^4.19.2",
"typescript": "^5"
},
"keywords": [
"graph",
"knowledge-graph",
"rag",
"llm",
"ai",
"memory",
"retrieval"
]
}