-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 796 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 796 Bytes
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
{
"name": "@rslib-example/react-rstest",
"version": "0.0.0",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"test": "rstest"
},
"devDependencies": {
"@rsbuild/plugin-react": "^1.4.6",
"@rslib/core": "^0.21.0",
"@rstest/adapter-rslib": "^0.2.2",
"@rstest/core": "^0.9.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.10",
"jsdom": "^27.4.0",
"react": "^19.2.4",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
}
}