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
75 lines (75 loc) · 1.47 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.47 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
{
"name": "@storybook/addon-contexts",
"version": "6.0.0-alpha.18",
"description": "Storybook Addon Contexts",
"keywords": [
"preact",
"react",
"storybook",
"vue"
],
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/storybook.git",
"directory": "addons/contexts"
},
"license": "MIT",
"author": "Leo Y. Li",
"main": "dist/register.js",
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts",
"ts3.5/**/*"
],
"scripts": {
"dev:check-types": "tsc --noEmit",
"prepare": "node ../../scripts/prepare.js"
},
"dependencies": {
"@storybook/addons": "6.0.0-alpha.18",
"@storybook/api": "6.0.0-alpha.18",
"@storybook/components": "6.0.0-alpha.18",
"@storybook/core-events": "6.0.0-alpha.18",
"core-js": "^3.0.1",
"global": "^4.3.2",
"qs": "^6.6.0",
"regenerator-runtime": "^0.13.3"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"enzyme": "^3.11.0"
},
"peerDependencies": {
"global": "*",
"preact": "*",
"qs": "*",
"rax": "*",
"react": "*",
"react-dom": "*",
"vue": "*"
},
"peerDependenciesMeta": {
"preact": {
"optional": true
},
"rax": {
"optional": true
},
"vue": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"gitHead": "4b9d901add9452525135caae98ae5f78dd8da9ff",
"typesVersions": {
"<=3.5": {
"*": [
"ts3.5/*"
]
}
}
}