UNPKG

@vizzly-testing/static-site

Version:

Static site generator plugin for Vizzly - seamlessly integrate static sites (Gatsby, Astro, Jekyll, Next.js) into your visual development workflow

85 lines (84 loc) 2.15 kB
{ "name": "@vizzly-testing/static-site", "version": "0.0.7", "description": "Static site generator plugin for Vizzly - seamlessly integrate static sites (Gatsby, Astro, Jekyll, Next.js) into your visual development workflow", "keywords": [ "vizzly", "static-site", "gatsby", "astro", "jekyll", "nextjs", "visual-testing", "screenshot-testing", "visual-regression", "plugin" ], "homepage": "https://vizzly.dev", "bugs": "https://github.com/vizzly-testing/cli/issues", "repository": { "type": "git", "url": "https://github.com/vizzly-testing/cli.git", "directory": "clients/static-site" }, "license": "MIT", "author": "Stubborn Mule Software <support@vizzly.dev>", "type": "module", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.js" } }, "main": "./dist/index.js", "vizzly": { "plugin": "./dist/plugin.js" }, "files": [ "dist", "README.md", "LICENSE", "CHANGELOG.md" ], "scripts": { "build": "npm run clean && npm run compile", "clean": "rimraf dist", "compile": "babel src --out-dir dist --ignore '**/*.spec.js'", "prepublishOnly": "npm run lint && npm run build", "test": "vitest run", "test:watch": "vitest", "lint": "eslint src", "lint:fix": "eslint src --fix", "format": "prettier --write src", "format:check": "prettier --check src" }, "engines": { "node": ">=22.0.0" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "peerDependencies": { "@vizzly-testing/cli": ">=0.9.0" }, "dependencies": { "cosmiconfig": "^9.0.0", "fast-xml-parser": "^4.5.0", "puppeteer": "^24.5.0", "serve-handler": "^6.1.5", "zod": "^4.1.12" }, "devDependencies": { "@babel/cli": "^7.28.0", "@babel/core": "^7.23.6", "@babel/preset-env": "^7.23.6", "@eslint/js": "^9.37.0", "eslint": "^9.31.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.5.3", "prettier": "^3.6.2", "rimraf": "^6.0.1", "vitest": "^3.2.4" } }