generated from storybookjs/addon-kit
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
123 lines (123 loc) · 3.25 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
115
116
117
118
119
120
121
122
123
{
"name": "storybook-addon-vue-slots",
"version": "0.9.29",
"description": "Vue Slots support for Storybook",
"keywords": [
"storybook-addons",
"storybook",
"vue",
"vue3",
"slots"
],
"repository": {
"type": "git",
"url": "https://github.com/JoJk0/storybook-addon-vue-slots"
},
"author": "Jacob Janisz",
"license": "MIT",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./preview": {
"require": "./dist/preview.js",
"import": "./dist/preview.mjs",
"types": "./dist/preview.d.ts"
},
"./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": "yarn clean",
"build": "tsup",
"build:watch": "yarn build --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "run-p build:watch 'storybook --quiet'",
"prerelease": "zx scripts/prepublish-checks.mjs",
"release": "yarn build && auto shipit",
"storybook": "storybook dev -p 6066",
"build-storybook": "storybook build -o storybook-static",
"preview-storybook": "vite preview --port 6088 --out-dir storybook-static"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.27",
"@storybook/addon-interactions": "^7.0.27",
"@storybook/addon-links": "^7.0.27",
"@storybook/addon-mdx-gfm": "7.0.27",
"@storybook/blocks": "^7.0.27",
"@storybook/builder-vite": "^7.0.27",
"@storybook/components": "^7.0.27",
"@storybook/core-events": "^7.0.27",
"@storybook/preview-api": "^7.0.27",
"@storybook/testing-library": "^0.2.0",
"@storybook/theming": "^7.0.27",
"@storybook/types": "^7.0.27",
"@storybook/vue3": "^7.0.27",
"@storybook/vue3-vite": "^7.0.27",
"@types/node": "^18.15.0",
"@types/react": "^18.0.34",
"@vitejs/plugin-react": "^3.1.0",
"auto": "^10.46.0",
"boxen": "^5.0.1",
"cheerio": "^1.0.0-rc.12",
"dedent": "^0.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.1",
"prompts": "^2.4.2",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rimraf": "^3.0.2",
"sass": "^1.63.6",
"storybook": "^7.0.27",
"storybook-addon-vue-slots": "^0.9.17",
"tsup": "^7.1.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vue": "^3.3.4",
"zx": "^1.14.1"
},
"peerDependencies": {
"@storybook/blocks": "^7.0.27",
"@storybook/components": "^7.0.27",
"@storybook/core-events": "^7.0.27",
"@storybook/preview-api": "^7.0.27",
"@storybook/theming": "^7.0.27",
"@storybook/types": "^7.0.27",
"@storybook/vue3": "^7.0.27",
"react": "^16.8.0 || ^17.0.27 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.27 || ^18.0.0",
"vue": "^3.3.4"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"storybook": {
"displayName": "Vue Slots",
"supportedFrameworks": [
"vue3"
],
"icon": "https://api.iconify.design/logos/vue.svg"
},
"auto": {
"plugins": [
"npm"
]
}
}