-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.93 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "autospecai",
"version": "0.0.21",
"description": "Open-source AI agent that autonomously QAs and generates E2E test specs for your web app",
"bin": {
"autospecai": "build/src/cli.js"
},
"type": "module",
"types": "build/src/index.d.ts",
"main": "build/src/index.js",
"keywords": [
"ai",
"e2e",
"testing",
"test",
"e2e",
"end-to-end",
"playwright",
"gpt"
],
"author": "Zach Blume <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint . --fix",
"format": "prettier --write .",
"test": "vitest run ./ --silent --config ./vitest.config.ts",
"test:watch": "vitest ./ --config ./vitest.config.ts",
"build": "tsc -p ./tsconfig.json",
"benchmark": "node ./build/benchmark/benchmark.js",
"tsc": "tsc -p ./tsconfig.json --noEmit"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss}": "prettier --write"
},
"dependencies": {
"@ai-sdk/anthropic": "^0.0.48",
"@ai-sdk/google": "^0.0.26",
"@ai-sdk/openai": "^0.0.54",
"@inquirer/prompts": "^5.3.8",
"ai": "^3.3.25",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"playwright": "^1.46.1",
"sharp": "^0.33.5",
"strip-ansi": "^7.1.0",
"winston": "^3.14.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@eslint/js": "^9.9.1",
"@playwright/test": "^1.46.1",
"@types/inquirer": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^7.18.0",
"vitest": "^2.0.5"
}
}