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

92 lines
2.5 KiB
JSON

{
"name": "@vitest/ui",
"type": "module",
"version": "4.0.0-beta.8",
"description": "UI for Vitest",
"license": "MIT",
"funding": "https://opencollective.com/vitest",
"homepage": "https://github.com/vitest-dev/vitest/tree/main/packages/ui#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vitest-dev/vitest.git",
"directory": "packages/ui"
},
"bugs": {
"url": "https://github.com/vitest-dev/vitest/issues"
},
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./reporter": {
"types": "./reporter.d.ts",
"default": "./dist/reporter.js"
},
"./*": "./*"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"*.d.ts",
"dist"
],
"scripts": {
"build": "rimraf dist && pnpm build:node && pnpm build:client",
"build:client": "vite build",
"build:node": "rollup -c",
"typecheck": "tsc --noEmit",
"dev:client": "vite",
"dev": "rollup -c --watch --watch.include 'node/**'",
"dev:ui": "pnpm run --stream '/^(dev|dev:client)$/'",
"test:ui": "vitest --browser"
},
"peerDependencies": {
"vitest": "workspace:*"
},
"dependencies": {
"@vitest/utils": "workspace:*",
"fflate": "^0.8.2",
"flatted": "catalog:",
"pathe": "catalog:",
"sirv": "catalog:",
"tinyglobby": "catalog:",
"tinyrainbow": "catalog:"
},
"devDependencies": {
"@faker-js/faker": "^9.9.0",
"@iconify-json/carbon": "catalog:",
"@iconify-json/logos": "catalog:",
"@testing-library/vue": "^8.1.0",
"@types/codemirror": "^5.60.16",
"@types/d3-force": "^3.0.10",
"@types/d3-selection": "^3.0.11",
"@types/ws": "catalog:",
"@unocss/reset": "catalog:",
"@vitejs/plugin-vue": "catalog:",
"@vitest/runner": "workspace:*",
"@vitest/ws-client": "workspace:*",
"@vue/test-utils": "^2.4.6",
"@vueuse/core": "catalog:",
"ansi-to-html": "^0.7.2",
"birpc": "catalog:",
"codemirror": "^5.65.18",
"codemirror-theme-vars": "^0.1.2",
"d3-graph-controller": "^3.1.1",
"floating-vue": "^5.2.2",
"mime": "^4.0.7",
"rollup": "^4.46.1",
"splitpanes": "^3.2.0",
"unocss": "catalog:",
"unplugin-auto-import": "^0.19.0",
"unplugin-vue-components": "catalog:",
"vite": "^5.0.0",
"vite-plugin-pages": "^0.33.1",
"vue": "catalog:",
"vue-router": "^4.5.1",
"vue-virtual-scroller": "2.0.0-beta.8"
}
}