vitest/packages/web-worker/package.json
2025-12-02 16:50:27 +01:00

51 lines
1.2 KiB
JSON

{
"name": "@vitest/web-worker",
"type": "module",
"version": "4.0.15",
"description": "Web Worker support for testing in Vitest",
"license": "MIT",
"funding": "https://opencollective.com/vitest",
"homepage": "https://github.com/vitest-dev/vitest/tree/main/packages/web-worker#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vitest-dev/vitest.git",
"directory": "packages/web-worker"
},
"bugs": {
"url": "https://github.com/vitest-dev/vitest/issues"
},
"sideEffects": false,
"exports": {
".": {
"types": "./index.d.ts",
"default": "./dist/index.js"
},
"./pure": {
"types": "./pure.d.ts",
"default": "./dist/pure.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./index.d.ts",
"files": [
"*.d.ts",
"dist"
],
"scripts": {
"build": "premove dist && rollup -c",
"dev": "rollup -c --watch --watch.include 'src/**'",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"vitest": "workspace:*"
},
"dependencies": {
"obug": "catalog:"
},
"devDependencies": {
"@types/ungap__structured-clone": "^1.2.0",
"@ungap/structured-clone": "^1.3.0"
}
}