-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.11 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
{
"name": "@harpua/langgraph-testing",
"version": "0.3.0",
"license": "MIT",
"description": "Deterministic testing helpers for @harpua/langgraph graphs: scripted chat models, stream collectors, interrupt assertions, and a Nest testing-module harness",
"repository": {
"type": "git",
"url": "git+https://github.com/IcculusC/harpua.git",
"directory": "packages/langgraph-testing"
},
"homepage": "https://github.com/IcculusC/harpua/tree/main/packages/langgraph-testing#readme",
"bugs": {
"url": "https://github.com/IcculusC/harpua/issues"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint \"src/**/*.ts\"",
"test": "jest"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": [
"ts-jest",
{
"tsconfig": "<rootDir>/../tsconfig.json"
}
]
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"testTimeout": 30000
},
"peerDependencies": {
"@harpua/langgraph": ">=0.1.6 <1.0.0",
"@langchain/core": "^1",
"@langchain/langgraph": "^1",
"@nestjs/common": "^11",
"@nestjs/core": "^11",
"@nestjs/testing": "^11",
"zod": "^3 || ^4"
},
"devDependencies": {
"@harpua/eslint-config": "workspace:*",
"@harpua/langgraph": "workspace:*",
"@harpua/typescript-config": "workspace:*",
"@langchain/core": "1.2.1",
"@langchain/langgraph": "1.4.7",
"@langchain/langgraph-checkpoint-sqlite": "^1.0.3",
"@nestjs/common": "11.1.27",
"@nestjs/core": "11.1.27",
"@nestjs/testing": "11.1.27",
"@types/jest": "30.0.0",
"@types/node": "22.15.30",
"eslint": "9.39.4",
"jest": "30.4.2",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.2",
"ts-jest": "29.4.11",
"typescript": "5.9.3",
"zod": "3.25.76"
}
}