forked from storybookjs/storybook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.6 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.6 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@storybook/react",
"version": "10.0.0-beta.6",
"description": "Storybook React renderer",
"keywords": [
"storybook"
],
"homepage": "https://github.com/storybookjs/storybook/tree/next/code/renderers/react",
"bugs": {
"url": "https://github.com/storybookjs/storybook/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/storybook.git",
"directory": "code/renderers/react"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/storybook"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./entry-preview": "./dist/entry-preview.js",
"./entry-preview-argtypes": "./dist/entry-preview-argtypes.js",
"./entry-preview-docs": "./dist/entry-preview-docs.js",
"./entry-preview-rsc": "./dist/entry-preview-rsc.js",
"./experimental-playwright": {
"types": "./dist/playwright.d.ts",
"default": "./dist/playwright.js"
},
"./package.json": "./package.json",
"./preset": "./dist/preset.js",
"./preview": {
"types": "./dist/preview.d.ts",
"default": "./dist/preview.js"
}
},
"files": [
"dist/**/*",
"template/cli/**/*",
"README.md",
"*.js",
"*.d.ts",
"!src/**/*"
],
"scripts": {
"check": "jiti ../../../scripts/check/check-package.ts",
"prep": "jiti ../../../scripts/build/build-package.ts"
},
"dependencies": {
"@storybook/global": "^5.0.0",
"@storybook/react-dom-shim": "workspace:*"
},
"devDependencies": {
"@types/babel-plugin-react-docgen": "^4.2.3",
"@types/escodegen": "^0.0.6",
"@types/estree": "^1.0.6",
"@types/node": "^22.0.0",
"@types/semver": "^7.3.4",
"acorn": "^7.4.1",
"acorn-jsx": "^5.3.1",
"acorn-walk": "^7.2.0",
"babel-plugin-react-docgen": "^4.2.1",
"es-toolkit": "^1.36.0",
"escodegen": "^2.1.0",
"expect-type": "^0.15.0",
"html-tags": "^3.1.0",
"prop-types": "^15.7.2",
"react-element-to-jsx-string": "npm:@7rulnik/react-element-to-jsx-string@15.0.1",
"require-from-string": "^2.0.2",
"semver": "^7.3.7",
"ts-dedent": "^2.0.0",
"type-fest": "~2.19"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"storybook": "workspace:^",
"typescript": ">= 4.9.x"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"gitHead": "a8e7fd8a655c69780bc20b9749d2699e45beae16"
}