vitest/packages/ws-client/package.json
2025-08-12 18:29:22 +02:00

49 lines
1.2 KiB
JSON

{
"name": "@vitest/ws-client",
"type": "module",
"version": "4.0.0-beta.8",
"description": "WebSocket client wrapper for communicating with Vitest",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"funding": "https://opencollective.com/vitest",
"homepage": "https://github.com/vitest-dev/vitest/tree/main/packages/ws-client#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vitest-dev/vitest.git",
"directory": "packages/ws-client"
},
"bugs": {
"url": "https://github.com/vitest-dev/vitest/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.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"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -c --watch --watch.include 'src/**'",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"birpc": "catalog:",
"flatted": "catalog:",
"ws": "catalog:"
},
"devDependencies": {
"@vitest/runner": "workspace:*"
}
}