-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.39 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
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
{
"name": "@saucelabs/visual",
"description": "JS client bindings for Sauce Labs Visual",
"version": "0.14.0",
"main": "build/index.cjs",
"module": "build/index.js",
"types": "build/index.d.ts",
"license": "MIT",
"files": [
"build",
"README.md"
],
"type": "module",
"engines": {
"node": "^16.13 || >=18"
},
"bin": "build/cli.js",
"typeScriptVersion": "3.8.3",
"keywords": [
"webdriver",
"wdio",
"wdio-service",
"saucelabs",
"visual"
],
"exports": {
".": {
"require": "./build/index.cjs",
"import": "./build/index.js",
"types": "./build/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup",
"watch": "tsc-watch --declaration -p .",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"gen": "npm run gen:graphql",
"gen:graphql": "graphql-codegen --config codegen.ts",
"pretest": "npm run gen",
"test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --collect-coverage"
},
"dependencies": {
"@apollo/client": "^3.7.14",
"@graphql-typed-document-node/core": "3.2.0",
"arktype": "^1.0.29-alpha",
"axios": "^1.8.2",
"chalk": "^4.0.0",
"cli-table3": "^0.6.3",
"commander": "^12.0.0",
"exponential-backoff": "^3.1.1",
"proxy-agent": "^6.3.1"
},
"tsup": {
"entry": [
"./src/index.ts",
"./src/cli.ts"
],
"dts": true,
"outDir": "./build",
"format": [
"cjs",
"esm"
],
"noExternal": [
"@apollo/client"
]
},
"devDependencies": {
"@graphql-codegen/cli": "3.3.1",
"@graphql-codegen/client-preset": "^3.0.1",
"@jest/globals": "^29.5.0",
"@tsconfig/node18": "^2.0.0",
"@types/argparse": "^2.0.14",
"@types/node": "^18.13.0",
"@types/node-fetch": "^2.6.4",
"@types/selenium-webdriver": "^4.1.15",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"cross-env": "^7.0.3",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"graphql": "^15.0.0",
"jest": "^29.5.0",
"jest-junit-reporter": "^1.1.0",
"prettier": "^2.8.8",
"selenium-webdriver": "^4.10.0",
"ts-jest": "^29.1.1",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.4",
"tsup": "^7.2.0",
"typescript": "^5.0.4"
}
}