-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.58 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.58 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
{
"name": "vasu-playwright-cli",
"version": "1.8.0",
"description": "Playwright TypeScript CLI to initialize/update with sample Playwright tests, framework setup and utilities",
"repository": {
"type": "git",
"url": "git+https://github.com/vasu31dev/playwright-ts-cli.git"
},
"homepage": "https://github.com/vasu31dev/playwright-ts-template#readme",
"bugs": {
"url": "https://github.com/vasu31dev/playwright-ts-cli/issues"
},
"author": {
"name": "Vasudeva Annam",
"email": "vasu31dev@gmail.com"
},
"engines": {
"node": ">=20.0.0"
},
"main": "./dist/cli.js",
"bin": {
"vasu-playwright-cli": "dist/cli.js"
},
"keywords": [
"playwright",
"typescript",
"cli",
"framework",
"template"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"start": "ts-node ./index.ts",
"clean": "rimraf dist",
"ready": "rimraf dist node_modules package-lock.json && npm i",
"prebuild": "npm run clean",
"build": "tsc",
"watch": "npm run build -- --watch",
"publish:check": "npm whoami",
"prepublishOnly": "npm run publish:check && npm run build",
"link": "npm run build && npm link",
"test": "playwright test"
},
"dependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.2.2",
"axios": "^1.13.5",
"commander": "^14.0.3",
"cross-spawn": "^7.0.6",
"fs-extra": "^11.3.3",
"rimraf": "^6.1.2",
"simple-git": "^3.30.0",
"ts-node": "^10.9.2",
"typescript": "5.9.3"
}
}