-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.36 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.36 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
{
"name": "passmark",
"version": "1.0.13",
"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": "^3.0.69",
"@ai-sdk/google": "^3.0.63",
"@ai-sdk/google-vertex": "^4.0.105",
"@ai-sdk/openai": "^3.0.52",
"@faker-js/faker": "^10.1.0",
"@google/genai": "^2.1.0",
"@openrouter/ai-sdk-provider": "^2.5.1",
"@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": "^6.0.161",
"axiom": "^0.46.1",
"ioredis": "^5.10.1",
"openai": "^6.34.0",
"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": "[email protected]",
"overrides": {
"tar": "^7.5.0"
},
"publishConfig": {
"access": "public"
}
}