-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 959 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 959 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
38
39
40
{
"name": "rslib-react-storybook",
"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",
"build:storybook": "storybook build",
"dev": "rslib build --watch",
"storybook": "storybook dev"
},
"devDependencies": {
"@rsbuild/core": "~1.6.15",
"@rsbuild/plugin-react": "^1.4.2",
"@rslib/core": "^0.18.5",
"@storybook/addon-docs": "^10.1.10",
"@storybook/addon-onboarding": "^10.1.10",
"@storybook/react": "^10.1.10",
"@types/react": "^19.2.7",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"storybook": "^10.1.10",
"storybook-addon-rslib": "^3.2.0",
"storybook-react-rsbuild": "^3.2.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
}
}