vitest/packages/ui/package.json
yoho b8f34eb8ca
feat: add html reporter based on Vitest UI (#2444)
* feat: vitest html report

* chore: copy ui to vitest dist

* feat: report copy ui dist

* feat: ui report version builder

* fix: copy file

* chore: remove

* feat: html metadata path

* feat: add declare

* feat: static file client

* feat: mock rpc

* fix: mock error

* chore: update meta

* chore: compress json

* chore: comment

* chore: update merge config

* chore: lock

* feat: remove all control command from ui

* chore: remove

* feat: report command

* feat: version tag

* chore: reset lock file

* feat: remove hooks

* chore: update

* fix: runningPromise

* chore: update debug mode and disable click on transform

* docs: report

* chore: remove the version mark

* feat: report

* fix: lint

* chore: copy ui from @vitest/ui

* chore: export report from ui

* chore: update

* fix: lint

* docs: ui html report

* feat: ensurePackageInstalled

* update

* feat: more info

* chore: improve documentation and tests

* chore: fix UI bundle size

* chore: ui tests

* perf: remove output report using the global variable to judge report mode

* chore: update

* fix: build

* fix: report

* fix: parse

* chore: fix html reporters test

* chore: don't store config in html reporter test

* chore: update ui docs

* feat: log

* chore: fix tests

* test: fix html reporter tests

* docs add vitest fo UI reporter

Co-authored-by: Vladimir <sleuths.slews0s@icloud.com>
2022-12-19 13:23:22 +03:00

78 lines
2.0 KiB
JSON

{
"name": "@vitest/ui",
"type": "module",
"version": "0.25.8",
"description": "UI for Vitest",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vitest-dev/vitest.git",
"directory": "packages/ui"
},
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./reporter": {
"types": "./dist/reporter.d.ts",
"import": "./dist/reporter.js"
},
"./*": "./*"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && pnpm build:node && pnpm build:client",
"build:client": "vite build",
"build:node": "rollup -c",
"dev:client": "vite",
"dev": "rollup -c --watch --watch.include=node",
"dev:ui": "run-p dev dev:client",
"test:run": "cypress run --component",
"test:open": "cypress open --component",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"fast-glob": "^3.2.12",
"flatted": "^3.2.7",
"sirv": "^2.0.2"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@testing-library/cypress": "^8.0.7",
"@types/codemirror": "^5.60.5",
"@types/d3-force": "^3.0.3",
"@types/d3-selection": "^3.0.3",
"@types/ws": "^8.5.3",
"@unocss/reset": "^0.47.6",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vitest/ws-client": "workspace:*",
"@vueuse/core": "^9.6.0",
"ansi-to-html": "^0.7.2",
"birpc": "^0.2.3",
"codemirror": "^5.65.10",
"codemirror-theme-vars": "^0.1.1",
"cypress": "^11.2.0",
"d3-graph-controller": "^2.4.0",
"diff": "^5.1.0",
"floating-vue": "^2.0.0-y.0",
"picocolors": "^1.0.0",
"rollup": "^2.79.1",
"splitpanes": "^3.1.5",
"unocss": "^0.47.6",
"unplugin-auto-import": "^0.12.1",
"unplugin-vue-components": "^0.22.12",
"vite": "^4.0.0",
"vite-plugin-pages": "^0.28.0",
"vue": "^3.2.45",
"vue-router": "^4.1.6"
}
}