-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.65 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
{
"name": "@atomicmemory/langgraph",
"version": "0.1.2",
"description": "AtomicMemory adapter for LangGraph JS - state-graph node factories around an injected MemoryClient.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/atomicstrata/atomicmemory.git",
"directory": "adapters/langgraph"
},
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "node --test --import tsx 'src/**/*.test.ts'",
"lint": "tsc -p tsconfig.json --noEmit",
"prepack": "pnpm build",
"prepublishOnly": "node -e \"const v=require('./package.json').dependencies['@atomicmemory/sdk'];if(v.startsWith('file:')||v.startsWith('link:')||v.startsWith('workspace:')){console.error('refusing to publish: @atomicmemory/sdk is '+v+'. Publish the SDK first, then pin to a registry version here.');process.exit(1)}\""
},
"dependencies": {
"@atomicmemory/sdk": "^1.0.2"
},
"peerDependencies": {
"@langchain/langgraph": "^0.4.0"
},
"peerDependenciesMeta": {
"@langchain/langgraph": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
},
"bugs": {
"url": "https://github.com/atomicstrata/atomicmemory/issues"
},
"homepage": "https://github.com/atomicstrata/atomicmemory/tree/main/adapters/langgraph#readme"
}