-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.06 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
{
"name": "vitest-browser-react",
"type": "module",
"version": "0.0.3",
"packageManager": "[email protected]",
"description": "Render React components in Vitest Browser Mode",
"author": "Vitest Team",
"license": "MIT",
"funding": "https://opencollective.com/vitest",
"homepage": "https://github.com/vitest-dev/vitest-browser-react#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vitest-dev/vitest-browser-react.git"
},
"bugs": {
"url": "https://github.com/vitest-dev/vitest-browser-react/issues"
},
"keywords": [
"react",
"vitest",
"browser",
"testing"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./pure": {
"types": "./dist/pure.d.ts",
"default": "./dist/pure.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"*.d.ts",
"*.mjs",
"dist"
],
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch --sourcemap",
"test": "vitest",
"publish-ci": "tsx scripts/publish-ci.ts",
"release": "tsx scripts/release.ts",
"lint": "eslint --cache .",
"lint:fix": "pnpm lint --fix"
},
"peerDependencies": {
"@types/react": ">18.0.0",
"@types/react-dom": ">18.0.0",
"@vitest/browser": ">=2.1.0",
"react": ">18.0.0",
"react-dom": ">18.0.0",
"vitest": ">=2.1.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
},
"devDependencies": {
"@antfu/eslint-config": "^2.24.1",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/browser": "^2.1.0",
"bumpp": "^9.4.2",
"changelogithub": "^0.13.9",
"eslint": "^9.8.0",
"playwright": "^1.46.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tsup": "^8.2.4",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"vitest": "^2.1.0",
"zx": "^8.1.4"
}
}