@saucelabs/visual
Version:
JS client bindings for Sauce Labs Visual
97 lines (96 loc) • 2.45 kB
JSON
{
"name": "@saucelabs/visual",
"description": "JS client bindings for Sauce Labs Visual",
"version": "0.15.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.7.4",
"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"
}
}