@storybook/preview 7.0.0-alpha.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +94 -0
- package/dist/chunk-IM5IP5SQ.mjs +1 -0
- package/dist/globals.d.ts +36 -0
- package/dist/globals.js +1 -0
- package/dist/globals.mjs +1 -0
- package/dist/runtime.d.ts +1 -0
- package/dist/runtime.js +95 -0
- package/dist/runtime.mjs +95 -0
- package/package.json +105 -0
package/package.json
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@storybook/preview",
|
|
3
|
+
"version": "7.0.0-alpha.53",
|
|
4
|
+
"description": "",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"storybook"
|
|
7
|
+
],
|
|
8
|
+
"homepage": "https://github.com/storybookjs/storybook/tree/main/code/lib/preview",
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/storybookjs/storybook/issues"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/storybookjs/storybook.git",
|
|
15
|
+
"directory": "code/lib/preview"
|
|
16
|
+
},
|
|
17
|
+
"funding": {
|
|
18
|
+
"type": "opencollective",
|
|
19
|
+
"url": "https://opencollective.com/storybook"
|
|
20
|
+
},
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"sideEffects": false,
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"import": "./dist/runtime.mjs",
|
|
26
|
+
"require": "./dist/runtime.js",
|
|
27
|
+
"types": "./dist/runtime.d.ts"
|
|
28
|
+
},
|
|
29
|
+
"./globals": {
|
|
30
|
+
"import": "./dist/globals.mjs",
|
|
31
|
+
"require": "./dist/globals.js",
|
|
32
|
+
"types": "./dist/globals.d.ts"
|
|
33
|
+
},
|
|
34
|
+
"./package.json": "./package.json"
|
|
35
|
+
},
|
|
36
|
+
"main": "dist/runtime.js",
|
|
37
|
+
"module": "dist/runtime.mjs",
|
|
38
|
+
"types": "dist/runtime.d.ts",
|
|
39
|
+
"typesVersions": {
|
|
40
|
+
"*": {
|
|
41
|
+
"*": [
|
|
42
|
+
"dist/runtime.d.ts"
|
|
43
|
+
],
|
|
44
|
+
"globals": [
|
|
45
|
+
"dist/globals.d.ts"
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"files": [
|
|
50
|
+
"dist/**/*",
|
|
51
|
+
"README.md",
|
|
52
|
+
"*.js",
|
|
53
|
+
"*.d.ts"
|
|
54
|
+
],
|
|
55
|
+
"scripts": {
|
|
56
|
+
"check": "../../../scripts/node_modules/.bin/tsc --noEmit",
|
|
57
|
+
"prep": "../../../scripts/prepare/bundle.ts"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@types/shelljs": "^0.8.7",
|
|
61
|
+
"fs-extra": "^9.0.1",
|
|
62
|
+
"shelljs": "^0.8.5"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@storybook/api": "7.0.0-alpha.53",
|
|
66
|
+
"@storybook/channel-postmessage": "7.0.0-alpha.53",
|
|
67
|
+
"@storybook/channel-websocket": "7.0.0-alpha.53",
|
|
68
|
+
"@storybook/channels": "7.0.0-alpha.53",
|
|
69
|
+
"@storybook/client-logger": "7.0.0-alpha.53",
|
|
70
|
+
"@storybook/core-client": "7.0.0-alpha.53",
|
|
71
|
+
"@storybook/core-common": "7.0.0-alpha.53",
|
|
72
|
+
"@storybook/core-events": "7.0.0-alpha.53",
|
|
73
|
+
"@storybook/csf": "next",
|
|
74
|
+
"@storybook/preview-web": "7.0.0-alpha.53",
|
|
75
|
+
"@storybook/router": "7.0.0-alpha.53",
|
|
76
|
+
"@storybook/theming": "7.0.0-alpha.53",
|
|
77
|
+
"@storybook/types": "7.0.0-alpha.53",
|
|
78
|
+
"@types/qs": "^6.9.5",
|
|
79
|
+
"@types/webpack-env": "^1.16.4",
|
|
80
|
+
"ansi-to-html": "^0.6.11",
|
|
81
|
+
"dequal": "^2.0.2",
|
|
82
|
+
"global": "^4.4.0",
|
|
83
|
+
"lodash": "^4.17.21",
|
|
84
|
+
"memoizerific": "^1.11.3",
|
|
85
|
+
"qs": "^6.10.0",
|
|
86
|
+
"react": "16.14.0",
|
|
87
|
+
"slash": "^3.0.0",
|
|
88
|
+
"synchronous-promise": "^2.0.15",
|
|
89
|
+
"ts-dedent": "^2.0.0",
|
|
90
|
+
"ts-jest": "^28.0.8",
|
|
91
|
+
"typescript": "~4.6.3",
|
|
92
|
+
"util-deprecate": "^1.0.2"
|
|
93
|
+
},
|
|
94
|
+
"publishConfig": {
|
|
95
|
+
"access": "public"
|
|
96
|
+
},
|
|
97
|
+
"bundler": {
|
|
98
|
+
"pre": "./scripts/generate-exports-file.ts",
|
|
99
|
+
"entries": [
|
|
100
|
+
"./src/runtime.ts",
|
|
101
|
+
"./src/globals.ts"
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
"gitHead": "fd1cf81615a5ddac3369e7bb567a1a43081fdc23"
|
|
105
|
+
}
|