-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.57 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.57 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
{
"name": "@cellar-door/langchain",
"version": "0.1.5",
"description": "LangChain integration for cellar-door EXIT and ENTRY — verifiable agent departure and arrival markers",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean --external cellar-door-exit --external cellar-door-entry --external zod --external @langchain/core --external ai",
"test": "vitest run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "https://github.com/CellarDoorExits/langchain.git"
},
"homepage": "https://github.com/CellarDoorExits/langchain#readme",
"bugs": {
"url": "https://github.com/CellarDoorExits/langchain/issues"
},
"license": "Apache-2.0",
"keywords": [
"exit-protocol",
"cellar-door",
"langchain",
"ai-agent",
"departure-marker",
"verifiable-credentials",
"agent-exit",
"callback-handler"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"peerDependencies": {
"@langchain/core": ">=0.2.0",
"cellar-door-entry": ">=0.1.0",
"cellar-door-exit": ">=0.2.0"
},
"devDependencies": {
"@langchain/core": "^1.1.28",
"@types/node": "^25.4.0",
"cellar-door-entry": "^0.1.0",
"cellar-door-exit": "^0.2.0",
"tsup": "^8.0.0",
"typescript": "^5.4.5",
"vitest": "^4.0.18",
"zod": "^3.23.8"
}
}