-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.55 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@vitest/ui",
"type": "module",
"version": "4.1.0-beta.2",
"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": "premove dist && pnpm build:node && pnpm build:client",
"build:client": "vite build",
"build:node": "rollup -c",
"typecheck": "tsc --noEmit",
"typecheck:client": "vue-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": "^10.2.0",
"@iconify-json/carbon": "catalog:",
"@iconify-json/logos": "catalog:",
"@types/codemirror": "^5.60.17",
"@types/d3-force": "^3.0.10",
"@types/d3-selection": "^3.0.11",
"@types/ws": "catalog:",
"@unocss/reset": "catalog:",
"@vitejs/plugin-vue": "catalog:",
"@vitest/browser-playwright": "workspace:*",
"@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.7",
"floating-vue": "^5.2.2",
"mime": "^4.1.0",
"rollup": "^4.57.0",
"splitpanes": "^4.0.4",
"typescript": "^5.9.3",
"unocss": "catalog:",
"vite": "^5.0.0",
"vite-plugin-pages": "^0.33.2",
"vitest-browser-vue": "2.0.2",
"vue": "catalog:",
"vue-router": "^4.6.4",
"vue-tsc": "^3.2.4",
"vue-virtual-scroller": "2.0.0-beta.8"
}
}