-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 840 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 840 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
37
{
"name": "@rslib-example/module-doc",
"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",
"doc": "rspress dev",
"doc:build": "rspress build",
"doc:preview": "rspress preview"
},
"devDependencies": {
"@rsbuild/plugin-react": "^1.4.6",
"@rslib/core": "^0.20.3",
"@rspress/core": "^2.0.8",
"@rspress/plugin-api-docgen": "^2.0.8",
"@rspress/plugin-preview": "^2.0.8",
"@types/node": "^24.10.9",
"@types/react": "^19.2.10",
"react": "^19.2.4",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
}
}