forked from LambdaTest/smartui-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.13 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": "@lambdatest/smartui-cli",
"version": "3.0.10",
"description": "A command line interface (CLI) to run SmartUI tests on LambdaTest",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsup",
"release": "pnpm run build && pnpm publish --access public --no-git-checks"
},
"bin": {
"smartui": "./dist/index.cjs"
},
"type": "module",
"keywords": [
"lambdatest",
"smartui",
"cli"
],
"author": "LambdaTest <[email protected]>",
"license": "MIT",
"dependencies": {
"@playwright/browser-chromium": "^1.40.1",
"@playwright/browser-firefox": "^1.40.1",
"@playwright/browser-webkit": "^1.40.1",
"@playwright/test": "^1.40.1",
"@types/cross-spawn": "^6.0.4",
"@types/node": "^20.8.9",
"@types/which": "^3.0.2",
"ajv": "^8.12.0",
"ajv-errors": "^3.0.0",
"axios": "^1.6.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"cross-spawn": "^7.0.3",
"fastify": "^4.24.3",
"form-data": "^4.0.0",
"listr2": "^7.0.1",
"tsup": "^7.2.0",
"which": "^4.0.0",
"winston": "^3.10.0"
},
"devDependencies": {
"typescript": "^5.3.2"
}
}