forked from vitest-dev/vitest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.41 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.41 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
{
"name": "@vitest/browser",
"type": "module",
"version": "4.0.16",
"description": "Browser running for Vitest",
"license": "MIT",
"funding": "https://opencollective.com/vitest",
"homepage": "https://github.com/vitest-dev/vitest/tree/main/packages/browser#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vitest-dev/vitest.git",
"directory": "packages/browser"
},
"bugs": {
"url": "https://github.com/vitest-dev/vitest/issues"
},
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./context": {
"types": "./context.d.ts",
"default": "./context.js"
},
"./client": {
"default": "./dist/client.js"
},
"./matchers": {
"types": "./matchers.d.ts",
"default": "./dummy.js"
},
"./locators": {
"types": "./dist/locators.d.ts",
"default": "./dist/locators.js"
},
"./utils": {
"default": "./dummy.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"*.d.ts",
"context.js",
"dist",
"dummy.js",
"providers"
],
"scripts": {
"typecheck": "tsc -p ./src/client/tsconfig.json --noEmit",
"typecheck:why": "tsc -p ./src/client/tsconfig.json --noEmit --explainFiles > explainTypes.txt",
"build": "premove dist && pnpm build:node && pnpm build:client",
"build:client": "vite build src/client",
"build:node": "rollup -c",
"dev:client": "node --watch-preserve-output --watch-path src/client scripts/build-client.js",
"dev:node": "rollup -c --watch --watch.include 'src/**'",
"dev": "premove dist && pnpm run --stream '/^dev:/'"
},
"peerDependencies": {
"vitest": "workspace:*"
},
"dependencies": {
"@vitest/mocker": "workspace:*",
"@vitest/utils": "workspace:*",
"magic-string": "catalog:",
"pixelmatch": "7.1.0",
"pngjs": "^7.0.0",
"sirv": "catalog:",
"tinyrainbow": "catalog:",
"ws": "catalog:"
},
"devDependencies": {
"@opentelemetry/api": "^1.9.0",
"@testing-library/user-event": "^14.6.1",
"@types/pngjs": "^6.0.5",
"@types/ws": "catalog:",
"@vitest/runner": "workspace:*",
"birpc": "catalog:",
"flatted": "catalog:",
"ivya": "^1.7.0",
"mime": "^4.1.0",
"pathe": "catalog:",
"vitest": "workspace:*"
}
}