-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.83 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.83 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
{
"name": "storybook-web-components-rsbuild",
"version": "3.3.3",
"description": "Storybook for web component and Rsbuild: Develop React Component in isolation with Hot Reloading.",
"keywords": [
"storybook",
"rsbuild",
"rspack",
"web component",
"lit",
"lit2",
"lit3"
],
"homepage": "https://storybook.rsbuild.rs",
"bugs": {
"url": "https://github.com/rstackjs/storybook-rsbuild/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rstackjs/storybook-rsbuild",
"directory": "packages/framework-web-components"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./node": {
"types": "./dist/node/index.d.ts",
"default": "./dist/node/index.js"
},
"./package.json": "./package.json",
"./preset": "./dist/preset.js"
},
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts",
"!src/**/*"
],
"scripts": {
"build": "pnpm run prep --production",
"check": "jiti ../../scripts/check/check-package.ts",
"prep": "jiti ../../scripts/build/build-package.ts",
"prepare": "pnpm run build"
},
"dependencies": {
"@storybook/web-components": "^10.3.5",
"storybook-builder-rsbuild": "workspace:*"
},
"devDependencies": {
"@rsbuild/core": "^2.0.0-rc.2",
"@types/node": "^22.0.0",
"lit": "^3.3.2",
"storybook": "10.3.5",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@rsbuild/core": "^1.5.0 || ^2.0.0-0",
"lit": "^2.0.0 || ^3.0.0",
"storybook": "^10.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"bundler": {
"entries": [
"./src/node/index.ts",
"./src/index.ts",
"./src/preset.ts"
],
"platform": "node"
}
}