-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathpackage.json
90 lines (90 loc) · 2.44 KB
/
package.json
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
{
"name": "@vitest/ui",
"type": "module",
"version": "3.0.0",
"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": "^3.3.2",
"pathe": "^2.0.1",
"sirv": "^3.0.0",
"tinyglobby": "^0.2.10",
"tinyrainbow": "^2.0.0"
},
"devDependencies": {
"@faker-js/faker": "^9.4.0",
"@iconify-json/carbon": "^1.2.5",
"@iconify-json/logos": "^1.2.4",
"@testing-library/vue": "^8.1.0",
"@types/codemirror": "^5.60.15",
"@types/d3-force": "^3.0.10",
"@types/d3-selection": "^3.0.11",
"@types/ws": "^8.5.13",
"@unocss/reset": "^0.65.4",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/runner": "workspace:*",
"@vitest/ws-client": "workspace:*",
"@vue/test-utils": "^2.4.6",
"@vueuse/core": "^12.4.0",
"ansi-to-html": "^0.7.2",
"birpc": "0.2.19",
"codemirror": "^5.65.18",
"codemirror-theme-vars": "^0.1.2",
"d3-graph-controller": "^3.0.11",
"floating-vue": "^5.2.2",
"rollup": "^4.30.1",
"splitpanes": "^3.1.8",
"unocss": "^0.65.4",
"unplugin-auto-import": "^0.19.0",
"unplugin-vue-components": "^0.28.0",
"vite": "^5.0.0",
"vite-plugin-pages": "^0.32.4",
"vue": "^3.5.12",
"vue-router": "^4.5.0",
"vue-virtual-scroller": "2.0.0-beta.8"
}
}