-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 KB
/
package.json
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
{
"name": "pretzelduck",
"author": "Ryan Huellen <[email protected]>",
"version": "1.0.0",
"description": "Use natural language to write end-to-end tests in Playwright.",
"repository": {
"url": "git+https://github.com/ryanhaticus/pretzelduck.git"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "rm -rf ./lib && tsc",
"fix": "biome check --write ./src",
"lint": "biome lint ./src",
"verify": "biome ci ./src && jest",
"release": "npx semantic-release"
},
"keywords": [
"pretzelduck",
"playwright",
"typescript",
"ai",
"test",
"e2e"
],
"license": "MIT",
"dependencies": {
"ai": "^3.4.9",
"lodash": "^4.17.21",
"zod": "^3.23.8"
},
"peerDependencies": {
"@playwright/test": "^1.47.2"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@playwright/test": "^1.47.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.0",
"jest": "^29.7.0",
"semantic-release": "^24.1.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.0",
"typescript": "^5.5.4"
}
}