UNPKG

@vizzly-testing/cli

Version:

Visual review platform for UI developers and designers

103 lines (102 loc) 2.79 kB
{ "name": "@vizzly-testing/cli", "version": "0.7.1", "description": "Visual review platform for UI developers and designers", "keywords": [ "visual-testing", "screenshot-testing", "visual-regression", "visual-review", "ui-testing", "collaboration", "testing", "cli" ], "homepage": "https://vizzly.dev", "bugs": "https://github.com/vizzly-testing/cli/issues", "repository": { "type": "git", "url": "https://github.com/vizzly-testing/cli.git" }, "license": "MIT", "author": "Stubborn Mule Software <support@vizzly.dev>", "type": "module", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.js" }, "./client": { "import": "./dist/client/index.js", "require": "./dist/client/index.js" }, "./sdk": { "import": "./dist/sdk/index.js", "require": "./dist/sdk/index.js" }, "./config": { "import": "./dist/utils/config-helpers.js", "require": "./dist/utils/config-helpers.js" } }, "main": "./dist/index.js", "types": "./dist/types/index.d.ts", "bin": { "vizzly": "./bin/vizzly.js" }, "files": [ "bin", "dist", "docs", "README.md", "LICENSE" ], "scripts": { "start": "node src/index.js", "build": "npm run clean && npm run compile && npm run copy-assets && npm run types", "clean": "rimraf dist", "compile": "babel src --out-dir dist --ignore '**/*.test.js'", "copy-assets": "cp src/services/report-generator/report.css dist/services/report-generator/", "types": "tsc --emitDeclarationOnly --outDir dist/types", "prepublishOnly": "npm test && npm run build", "test": "vitest run", "test:watch": "vitest", "lint": "eslint src tests", "lint:fix": "eslint src tests --fix", "format": "prettier --write src tests", "format:check": "prettier --check src tests" }, "engines": { "node": ">=20.0.0" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "dependencies": { "commander": "^14.0.0", "cosmiconfig": "^9.0.0", "dotenv": "^17.2.1", "form-data": "^4.0.0", "glob": "^11.0.3", "odiff-bin": "^3.2.1" }, "devDependencies": { "@babel/cli": "^7.28.0", "@babel/core": "^7.23.6", "@babel/preset-env": "^7.23.6", "@babel/preset-react": "^7.27.1", "@babel/preset-typescript": "^7.23.6", "@eslint/js": "^9.31.0", "@vitest/coverage-v8": "^3.2.4", "babel-plugin-transform-remove-console": "^6.9.4", "eslint": "^9.31.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.5.3", "prettier": "^3.6.2", "rimraf": "^6.0.1", "typescript": "^5.0.4", "vite": "^7.1.2", "vitest": "^3.2.4" } }