UNPKG

@webcontainer/test

Version:

Utilities for testing applications in WebContainers

66 lines 1.65 kB
{ "name": "@webcontainer/test", "version": "0.2.0", "description": "Utilities for testing applications in WebContainers", "author": "StackBlitz Inc.", "license": "MIT", "type": "module", "types": "./dist/index.d.ts", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } }, "./plugin": { "import": { "types": "./dist/plugin.d.ts", "default": "./dist/plugin.js" } } }, "files": [ "dist" ], "homepage": "https://github.com/stackblitz/webcontainer-test", "bugs": "https://github.com/stackblitz/webcontainer-test", "repository": { "type": "git", "url": "git+https://github.com/stackblitz/webcontainer-test.git" }, "keywords": [ "testing", "webcontainer", "playwright", "vitest" ], "dependencies": { "@webcontainer/api": "^1.6.1", "@webcontainer/snapshot": "^0.1.0" }, "peerDependencies": { "@vitest/browser": "^3.1", "vitest": "^3.1" }, "devDependencies": { "@blitz/eslint-plugin": "^0.1.4", "@types/node": "^22.14.0", "@vitest/browser": "^3.1.1", "eslint": "^9.24.0", "playwright": "^1.52.0", "prettier": "^3.5.3", "tsup": "^8.4.0", "typescript": "^5.8.3", "vitest": "^3.1.1" }, "prettier": {}, "scripts": { "build": "tsup", "dev": "tsup --watch --sourcemap", "test": "vitest run", "test:watch": "vitest --project Chromium --browser.provider preview --browser.headless=false", "lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .", "typecheck": "tsc --noEmit" } }