@vizzly-testing/storybook
Version:
Storybook plugin for Vizzly - seamlessly integrate Storybook stories into your visual development workflow
78 lines (77 loc) • 1.98 kB
JSON
{
"name": "@vizzly-testing/storybook",
"version": "0.1.2",
"description": "Storybook plugin for Vizzly - seamlessly integrate Storybook stories into your visual development workflow",
"keywords": [
"vizzly",
"storybook",
"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/storybook"
},
"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 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": ">=22.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"@vizzly-testing/cli": ">=0.9.0"
},
"dependencies": {
"puppeteer": "^24.5.0",
"serve-handler": "^6.1.5"
},
"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"
}
}