-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 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
{
"name": "sentry-ai-sdks-test",
"version": "1.0.0",
"description": "Comprehensive testing framework for Sentry's AI SDK integrations",
"private": true,
"type": "module",
"scripts": {
"build": "tsc",
"postbuild": "rm -rf dist/runner/templates && mkdir -p dist/runner/templates && cp -r src/runner/templates/* dist/runner/templates/",
"test": "node dist/cli.js",
"setup": "node dist/setup.js",
"postsetup": "git submodule update --init sentry-conventions && npx playwright install chromium",
"dev": "npm run build && node dist/cli.js",
"report": "node dist/generate-html-report.js",
"update-conventions": "git submodule update --remote sentry-conventions"
},
"keywords": [
"sentry",
"ai",
"testing"
],
"dependencies": {
"@hono/node-server": "^1.19.9",
"@types/nunjucks": "^3.2.6",
"chai": "^5.1.2",
"cli-spinners": "^3.4.0",
"ctrf": "^0.0.17",
"dotenv": "^17.2.3",
"hono": "^4.11.8",
"htm": "^3.1.1",
"log-update": "^7.0.2",
"nunjucks": "^3.2.4",
"playwright": "^1.49.1",
"prettier": "^3.8.1",
"vhtml": "^2.2.0",
"vite": "^6.0.11",
"vite-plugin-singlefile": "^2.0.5"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/node": "^22.10.5",
"@types/vhtml": "^2.2.9",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"volta": {
"node": "22.22.0"
}
}