generated from storybookjs/addon-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.06 KB
/
package.json
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "storybook-addon-contentful-preview",
"version": "0.0.21",
"description": "Preview your components with contentful data",
"keywords": [
"",
"contentful",
"preview",
"live-preview",
"cms",
"headless",
"storybook-addons"
],
"repository": {
"type": "git",
"url": "git+https://github.com/marcolink/storybook-addon-contentful-preview.git"
},
"license": "MIT",
"author": "Marco Link <[email protected]>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": "./dist/index.js",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./manager": "./dist/manager.mjs",
"./preview": "./dist/preview.mjs",
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"scripts": {
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"build": "tsup",
"build:watch": "npm run build -- --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm-run-all --parallel build:watch storybook",
"prerelease": "zx scripts/prepublish-checks.mjs",
"release": "npm run build && auto shipit",
"eject-ts": "zx scripts/eject-typescript.mjs",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.13",
"@storybook/addon-interactions": "^7.6.13",
"@storybook/addon-links": "^7.6.13",
"@storybook/blocks": "^7.6.13",
"@storybook/components": "^7.6.13",
"@storybook/core-events": "^7.6.13",
"@storybook/manager": "^7.6.13",
"@storybook/manager-api": "^7.6.13",
"@storybook/preview": "^7.6.13",
"@storybook/preview-api": "^7.6.13",
"@storybook/react": "^7.6.14",
"@storybook/react-vite": "^7.6.14",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^7.6.13",
"@storybook/types": "^7.6.13",
"@types/node": "^18.15.0",
"@types/react": "^17.0.75",
"@types/react-dom": "^17.0.25",
"@vitejs/plugin-react": "^4.2.1",
"auto": "^11.0.5",
"boxen": "^7.1.1",
"dedent": "^1.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prompts": "^2.4.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^5.0.5",
"storybook": "^7.6.13",
"tsup": "^8.0.1",
"typescript": "^5.2.2",
"vite": "^5.1.1",
"vite-plugin-environment": "^1.1.3",
"zx": "^7.2.3"
},
"publishConfig": {
"access": "public"
},
"bundler": {
"exportEntries": [
"src/index.ts"
],
"managerEntries": [
"src/manager.ts"
],
"previewEntries": [
"src/preview.ts"
]
},
"storybook": {
"displayName": "Contentful Preview",
"supportedFrameworks": [
"react"
],
"icon": "https://user-images.githubusercontent.com/321738/63501763-88dbf600-c4cc-11e9-96cd-94adadc2fd72.png"
},
"dependencies": {
"@contentful/live-preview": "2.15.2",
"contentful": "10.5.3"
}
}