vitest/packages/ws-client/package.json
2025-01-08 15:21:19 +01:00

49 lines
1.2 KiB
JSON

{
"name": "@vitest/ws-client",
"type": "module",
"version": "3.0.0-beta.4",
"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": "0.2.19",
"flatted": "^3.3.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@vitest/runner": "workspace:*"
}
}