-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.26 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.26 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
{
"name": "po-generator",
"version": "1.0.0",
"description": "CLI tool for automated Page Object generation using AI",
"type": "module",
"bin": {
"po-gen": "./bin/po-gen.ts"
},
"scripts": {
"start": "node --import tsx bin/po-gen.ts",
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix"
]
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3",
"dotenv": "^17.2.3",
"openai": "^6.17.0",
"ora": "^9.1.0",
"playwright": "^1.58.1",
"tsx": "^4.21.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.2.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"playwright",
"page-object",
"testing",
"automation",
"ai",
"vuetify",
"symfony"
],
"author": "",
"license": "MIT"
}