UNPKG

@vizzly-testing/cli

Version:

Visual review platform for UI developers and designers

140 lines (139 loc) 4.13 kB
{ "name": "@vizzly-testing/cli", "version": "0.17.0", "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": "git+https://github.com/vizzly-testing/cli.git" }, "license": "MIT", "author": "Stubborn Mule Software <support@vizzly.dev>", "type": "module", "exports": { ".": { "types": "./dist/types/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.js" }, "./client": { "types": "./dist/types/client.d.ts", "import": "./dist/client/index.js", "require": "./dist/client/index.js" }, "./sdk": { "types": "./dist/types/sdk.d.ts", "import": "./dist/sdk/index.js", "require": "./dist/sdk/index.js" }, "./config": { "types": "./dist/types/config.d.ts", "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", "claude-plugin", "README.md", "LICENSE" ], "scripts": { "start": "node src/index.js", "build": "npm run clean && npm run compile && npm run copy-assets && npm run build:reporter && npm run copy-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/", "copy-types": "mkdir -p dist/types && cp src/types/*.d.ts dist/types/", "build:reporter": "cd src/reporter && vite build", "dev:reporter": "cd src/reporter && vite --config vite.dev.config.js", "test:types": "tsd", "prepublishOnly": "npm run build", "test": "vitest run", "test:watch": "vitest", "test:reporter": "playwright test --config=tests/reporter/playwright.config.js", "test:reporter:visual": "node bin/vizzly.js run \"npm run test:reporter\"", "lint": "eslint src tests", "lint:fix": "eslint src tests --fix", "format": "prettier --write src tests", "format:check": "prettier --check src tests" }, "engines": { "node": ">=22.0.0" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "dependencies": { "@vizzly-testing/honeydiff": "^0.5.0", "commander": "^14.0.0", "cosmiconfig": "^9.0.0", "dotenv": "^17.2.1", "form-data": "^4.0.0", "glob": "^13.0.0", "zod": "^4.1.12" }, "tsd": { "directory": "test-d", "typingsFile": "src/types/index.d.ts", "compilerOptions": { "esModuleInterop": true, "module": "ESNext", "moduleResolution": "node", "strict": true } }, "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", "@heroicons/react": "^2.2.0", "@modelcontextprotocol/sdk": "^1.0.4", "@playwright/test": "^1.55.1", "@tailwindcss/postcss": "^4.1.13", "@tanstack/react-query": "^5.90.11", "@types/node": "^24.10.1", "@vitejs/plugin-react": "^5.0.3", "@vitest/coverage-v8": "^4.0.3", "autoprefixer": "^10.4.21", "babel-plugin-transform-remove-console": "^6.9.4", "eslint": "^9.31.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.5.3", "eslint-plugin-react": "^7.37.5", "eslint-plugin-react-hooks": "^7.0.0", "postcss": "^8.5.6", "prettier": "^3.6.2", "react": "^19.1.1", "react-dom": "^19.1.1", "rimraf": "^6.0.1", "tailwindcss": "^4.1.13", "tsd": "^0.33.0", "typescript": "^5.0.4", "vite": "^7.1.7", "vitest": "^4.0.3", "wouter": "^3.7.1" } }