-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
153 lines (153 loc) · 4.54 KB
/
Copy pathpackage.json
File metadata and controls
153 lines (153 loc) · 4.54 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "@io-orkes/conductor-javascript",
"description": "Typescript SDK for Netflix Conductor",
"version": "v0.0.0",
"private": false,
"homepage": "https://orkes.io",
"repository": {
"type": "git",
"url": "https://github.com/conductor-oss/javascript-sdk"
},
"keywords": [
"conductor",
"workflow",
"orchestration",
"microservice"
],
"author": "Conductor community",
"license": "Apache-2.0",
"contributors": [
{
"name": "Black Diamond"
},
{
"name": "Nick Tomlin"
},
{
"name": "James Stuart Milne"
}
],
"sideEffects": [
"./dist/agents/**"
],
"engines": {
"node": ">=18"
},
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./agents": {
"types": "./dist/agents/index.d.ts",
"require": "./dist/agents/index.js",
"import": "./dist/agents/index.mjs"
},
"./agents/testing": {
"types": "./dist/agents/testing/index.d.ts",
"require": "./dist/agents/testing/index.js",
"import": "./dist/agents/testing/index.mjs"
},
"./agents/vercel-ai": {
"types": "./dist/agents/wrappers/ai.d.ts",
"require": "./dist/agents/wrappers/ai.js",
"import": "./dist/agents/wrappers/ai.mjs"
},
"./agents/langgraph": {
"types": "./dist/agents/wrappers/langgraph.d.ts",
"require": "./dist/agents/wrappers/langgraph.js",
"import": "./dist/agents/wrappers/langgraph.mjs"
},
"./agents/langchain": {
"types": "./dist/agents/wrappers/langchain.d.ts",
"require": "./dist/agents/wrappers/langchain.js",
"import": "./dist/agents/wrappers/langchain.mjs"
}
},
"main": "dist/index.js",
"scripts": {
"lint": "npx eslint .",
"lint-fix": "npx eslint . --fix",
"test": "cross-env ORKES_BACKEND_VERSION=5 jest --force-exit --detectOpenHandles",
"test:unit": "jest --force-exit --detectOpenHandles --testMatch='**/src/**/__tests__/**/*.test.[jt]s?(x)'",
"test:integration:base": "jest --force-exit --detectOpenHandles --testMatch='**/src/integration-tests/*.test.[jt]s?(x)'",
"test:integration:v5": "cross-env ORKES_BACKEND_VERSION=5 npm run test:integration:base --",
"test:integration:v4": "cross-env ORKES_BACKEND_VERSION=4 npm run test:integration:base --",
"test:integration:oss": "cross-env ORKES_BACKEND_VERSION=5 CONDUCTOR_SERVER_TYPE=oss npm run test:integration:base --",
"test:integration:v5:batch": "cross-env ORKES_BACKEND_VERSION=5 node scripts/run-integration-batch.mjs",
"test:integration:v4:batch": "cross-env ORKES_BACKEND_VERSION=4 node scripts/run-integration-batch.mjs",
"test:agent-e2e": "cross-env JEST_JUNIT_OUTPUT_DIR=results JEST_JUNIT_OUTPUT_NAME=junit-e2e.xml jest --config jest.e2e.config.mjs --forceExit",
"ci": "npm run lint && npm run test",
"build": "tsup && npm run verify:dist",
"verify:dist": "node scripts/verify-dist.mjs",
"generate-openapi-layer": "openapi-ts",
"generate-docs": "typedoc --plugin typedoc-plugin-markdown",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@hey-api/openapi-ts": "^0.85.2",
"@tsconfig/node24": "^24.0.4",
"@types/node": "^22.0.0",
"@types/uuid": "^9.0.1",
"cross-env": "^10.1.0",
"eslint": "^9.34.0",
"jest": "^30.1.3",
"jest-junit": "^16.0.0",
"prom-client": "^15.1.3",
"ts-jest": "^29.4.2",
"tsup": "^8.5.0",
"tsx": "^4.21.0",
"typedoc": "^0.28.11",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0",
"uuid": "^9.0.0",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.23.5"
},
"peerDependencies": {
"@langchain/core": ">=0.2.0",
"@langchain/langgraph": ">=0.2.0",
"ai": ">=3.0.0",
"zod": "^3.22.0",
"zod-to-json-schema": "^3.23.0"
},
"peerDependenciesMeta": {
"zod": {
"optional": true
},
"zod-to-json-schema": {
"optional": true
},
"ai": {
"optional": true
},
"@langchain/core": {
"optional": true
},
"@langchain/langgraph": {
"optional": true
}
},
"optionalDependencies": {
"undici": "^7.16.0"
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"ancestorSeparator": " > ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
},
"dependencies": {
"dotenv": "^16.0.1",
"reflect-metadata": "^0.2.2"
}
}