-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.21 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.21 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
{
"name": "passmark",
"version": "1.0.3",
"description": "The open-source AI framework for regression testing.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./providers/emailsink": {
"types": "./dist/providers/emailsink.d.ts",
"default": "./dist/providers/emailsink.js"
}
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/",
"format": "prettier --write 'src/**/*.ts' '*.json' '*.ts'",
"format:check": "prettier --check 'src/**/*.ts' '*.json' '*.ts'",
"prepublishOnly": "pnpm install && pnpm run build"
},
"keywords": [
"playwright",
"testing",
"auto-healing",
"ai"
],
"author": "Sandeep Panda",
"license": "FSL-1.1-Apache-2.0",
"peerDependencies": {
"@playwright/test": "^1.59.0",
"playwright-core": "^1.59.0"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.6",
"@ai-sdk/google": "^2.0.49",
"@ai-sdk/google-vertex": "^3.0.16",
"@ai-sdk/openai": "^2.0.19",
"@faker-js/faker": "^10.1.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.207.0",
"@opentelemetry/resources": "^2.2.0",
"@opentelemetry/sdk-trace-node": "^2.2.0",
"@opentelemetry/semantic-conventions": "^1.37.0",
"acorn": "^8.15.0",
"ai": "^5.0.36",
"axiom": "^0.22.2",
"ioredis": "^5.10.1",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"shortid": "^2.2.17",
"uuid": "^13.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/ioredis": "^4.28.10",
"@types/node": "^22.13.10",
"@types/shortid": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.1.0",
"prettier": "^3.8.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.33.0",
"publishConfig": {
"access": "public"
}
}