-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.73 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@wdio/browserstack-service",
"version": "9.30.0",
"description": "WebdriverIO service for better Browserstack integration",
"author": "BrowserStack <support@browserstack.com>",
"homepage": "https://github.com/browserstack/wdio-browserstack-service",
"license": "MIT",
"engines": {
"node": ">=18.20.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/browserstack/wdio-browserstack-service.git",
"directory": "packages/browserstack-service"
},
"keywords": [
"webdriverio",
"wdio",
"browserstack",
"wdio-service"
],
"bugs": {
"url": "https://github.com/browserstack/wdio-browserstack-service/issues"
},
"type": "module",
"types": "./build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js"
},
"./cleanup": {
"types": "./build/cleanup.d.ts",
"import": "./build/cleanup.js",
"source": "./src/cleanup.ts"
}
},
"typeScriptVersion": "3.8.3",
"files": [
"build",
"src/proto/**/*.proto",
"browserstack-service.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "rimraf ./build src/grpc/generated",
"generate": "buf generate",
"build": "rimraf ./build src/grpc/generated && buf generate && node ./scripts/build.mjs && tsc -p tsconfig.prod.json",
"build:watch": "node ./scripts/build.mjs --watch",
"test": "vitest --run",
"test:watch": "vitest",
"prepack": "npm run build"
},
"dependencies": {
"@browserstack/ai-sdk-node": "1.5.17",
"@bufbuild/protobuf": "^2.5.2",
"@grpc/grpc-js": "1.13.3",
"@percy/appium-app": "^2.0.9",
"@percy/selenium-webdriver": "^2.2.2",
"@types/gitconfiglocal": "^2.0.1",
"browserstack-local": "^1.5.1",
"chalk": "^5.3.0",
"csv-writer": "^1.6.0",
"git-repo-info": "^2.1.1",
"gitconfiglocal": "^2.1.0",
"glob": "^11.0.0",
"tar": "^7.5.11",
"undici": "^6.24.0",
"uuid": "^11.1.0",
"winston-transport": "^4.5.0",
"yauzl": "^3.4.0",
"@wdio/logger": "^9.0.0",
"@wdio/reporter": "^9.0.0",
"@wdio/types": "^9.0.0",
"webdriverio": "^9.0.0"
},
"peerDependencies": {
"@wdio/cli": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
},
"devDependencies": {
"@bufbuild/buf": "^1.55.1",
"@changesets/cli": "^2.27.9",
"@types/node": "^20.1.0",
"@types/tar": "^7.0.87",
"@types/yauzl": "^2.10.3",
"@wdio/globals": "^9.0.0",
"@wdio/logger": "^9.0.0",
"@wdio/reporter": "^9.0.0",
"@wdio/types": "^9.0.0",
"esbuild": "^0.27.2",
"rimraf": "^6.0.1",
"ts-proto": "^2.7.5",
"typescript": "^5.8.3",
"vitest": "^3.2.4",
"webdriverio": "^9.0.0"
},
"publishConfig": {
"access": "public"
}
}