-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.79 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.79 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
{
"name": "@langwatch/scenario",
"version": "0.4.11",
"description": "A TypeScript library for testing AI agents using scenarios",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rm -rf dist *.tgz",
"build": "tsup",
"buildpack": "pnpm run build && pnpm pack",
"watch": "pnpm run build -- --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run --coverage",
"generate:api-reference": "npx typedoc src --out api-reference-docs && rm -rf ../docs/docs/public/reference/javascript/scenario && mv api-reference-docs ../docs/docs/public/reference/javascript/scenario",
"prepublishOnly": "pnpm run typecheck && pnpm run build",
"clean:all": "pnpm -r --parallel exec rm -rf dist *.tgz .cache",
"build:all": "pnpm run build",
"typecheck:all": "pnpm -r --parallel run typecheck",
"lint:all": "pnpm -r --parallel run lint",
"format:all": "pnpm -r --parallel run format",
"test:all": "pnpm -r --parallel run test",
"vitest-examples": "pnpm -F vitest-examples",
"openai-realtime-demo": "pnpm -F openai-realtime-demo",
"realtime-client": "pnpm -F realtime-client"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/langwatch/scenario.git"
},
"bugs": {
"url": "https://github.com/langwatch/scenario/issues"
},
"homepage": "https://github.com/langwatch/scenario#readme",
"author": "LangWatch",
"license": "AGPL-3.0",
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"packageManager": "pnpm@10.12.1",
"dependencies": {
"@ag-ui/core": "^0.0.28",
"@ai-sdk/openai": "^3.0.26",
"@openai/agents": "^0.3.3",
"@opentelemetry/sdk-node": "0.212.0",
"ai": "^6.0.0",
"chalk": "^5.6.2",
"langwatch": "0.16.1",
"open": "11.0.0",
"rxjs": "^7.8.2",
"xksuid": "^0.0.4",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"@typescript-eslint/parser": "^8.48.0",
"@typescript/native-preview": "7.0.0-dev.20251128.1",
"@vitest/coverage-v8": "4.0.14",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unused-imports": "^4.3.0",
"globals": "^16.5.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"tsup": "^8.5.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0",
"vitest": "^4.0.14"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./integrations/vitest/reporter": {
"types": "./dist/integrations/vitest/reporter.d.ts",
"require": "./dist/integrations/vitest/reporter.js",
"import": "./dist/integrations/vitest/reporter.mjs"
},
"./integrations/vitest/setup": {
"types": "./dist/integrations/vitest/setup.d.ts",
"require": "./dist/integrations/vitest/setup.js",
"import": "./dist/integrations/vitest/setup.mjs"
},
"./integrations/vitest/setup-global": {
"types": "./dist/integrations/vitest/setup-global.d.ts",
"require": "./dist/integrations/vitest/setup-global.js",
"import": "./dist/integrations/vitest/setup-global.mjs"
},
"./integrations/vitest/config": {
"types": "./dist/integrations/vitest/config.d.ts",
"require": "./dist/integrations/vitest/config.js",
"import": "./dist/integrations/vitest/config.mjs"
}
},
"peerDependencies": {
"ai": ">=6.0.0",
"vitest": ">=3.2.4"
}
}