mirror of
https://github.com/vitest-dev/vitest.git
synced 2026-01-25 16:48:18 +00:00
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "@vitest/ws-client",
|
|
"type": "module",
|
|
"version": "0.31.2",
|
|
"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",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"*.d.ts",
|
|
"*.mjs"
|
|
],
|
|
"engines": {
|
|
"node": ">=v14.18.0"
|
|
},
|
|
"scripts": {
|
|
"build": "rimraf dist && rollup -c",
|
|
"dev": "rollup -c --watch --watch.include 'src/**'",
|
|
"prepublishOnly": "pnpm build",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"birpc": "0.2.12",
|
|
"flatted": "^3.2.7",
|
|
"ws": "^8.13.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vitest/runner": "workspace:*",
|
|
"rollup": "^2.79.1"
|
|
}
|
|
}
|