UNPKG

vitest-browser-react

Version:
87 lines 2.08 kB
{ "name": "vitest-browser-react", "type": "module", "version": "0.1.1", "description": "Render React components in Vitest Browser Mode", "author": "Vitest Team", "license": "MIT", "funding": "https://opencollective.com/vitest", "homepage": "https://github.com/vitest-dev/vitest-browser-react#readme", "repository": { "type": "git", "url": "git+https://github.com/vitest-dev/vitest-browser-react.git" }, "bugs": { "url": "https://github.com/vitest-dev/vitest-browser-react/issues" }, "keywords": [ "react", "vitest", "browser", "testing" ], "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./pure": { "types": "./dist/pure.d.ts", "default": "./dist/pure.js" } }, "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "*.d.ts", "*.mjs", "dist" ], "engines": { "node": "^18.0.0 || >=20.0.0" }, "peerDependencies": { "@types/react": ">18.0.0", "@types/react-dom": ">18.0.0", "@vitest/browser": ">=2.1.0", "react": ">18.0.0", "react-dom": ">18.0.0", "vitest": ">=2.1.0" }, "peerDependenciesMeta": { "@types/react": { "optional": true }, "@types/react-dom": { "optional": true } }, "devDependencies": { "@antfu/eslint-config": "^2.24.1", "@types/react": "^18.0.0", "@types/react-dom": "^18.3.0", "@vitejs/plugin-react": "^4.3.3", "@vitest/browser": "^2.1.0", "bumpp": "^9.4.2", "changelogithub": "^0.13.9", "eslint": "^9.8.0", "playwright": "^1.46.0", "react": "^18.0.0", "react-dom": "^18.0.0", "tsup": "^8.2.4", "tsx": "^4.17.0", "typescript": "^5.5.4", "vitest": "^2.1.0", "zx": "^8.1.4" }, "scripts": { "build": "tsup", "dev": "tsup --watch --sourcemap", "test": "vitest", "publish-ci": "tsx scripts/publish-ci.ts", "release": "tsx scripts/release.ts", "lint": "eslint --cache .", "lint:fix": "pnpm lint --fix" } }