generated from storybookjs/addon-kit
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
90 lines (90 loc) · 2.33 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
{
"name": "storybook-vue3-router",
"version": "5.0.0",
"description": "A Storybook decorator that allows you to build stories for your routing-aware components.",
"keywords": [
"storybook-addons",
"vue",
"vue-router"
],
"repository": {
"type": "git",
"url": "https://github.com/NickMcBurney/storybook-vue3-router"
},
"author": "Nick McBurney",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"clean": "rimraf ./dist",
"prebuild": "pnpm clean",
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"storybook": "storybook dev -p 6006",
"dev": "concurrently \"pnpm storybook\" \"pnpm build:watch\"",
"build-storybook": "storybook build",
"prepublish": "pnpm build",
"test": "npx playwright test"
},
"dependencies": {
"vue-router": "^4.2.5"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"@storybook/addon-actions": "^7.6.3",
"@storybook/addon-essentials": "^7.6.3",
"@storybook/addon-mdx-gfm": "7.4.2",
"@storybook/addons": "^7.6.3",
"@storybook/blocks": "^7.6.3",
"@storybook/preview-api": "^7.6.3",
"@storybook/types": "^7.6.3",
"@storybook/vue3": "^7.6.3",
"@storybook/vue3-vite": "^7.6.3",
"@types/node": "^18.19.2",
"@vitejs/plugin-vue": "^4.5.1",
"concurrently": "^6.5.1",
"esbuild": "^0.17.19",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^3.29.4",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-esbuild": "^5.0.0",
"storybook": "^7.6.3",
"typescript": "^4.9.5",
"vite": "^4.5.1",
"vue": "^3.3.10",
"zx": "^1.15.2"
},
"peerDependencies": {
"@storybook/preview-api": "7.x||>=7.0.0-rc.0",
"@storybook/vue3": "7.x||>=7.0.0-rc.0",
"vue": "3.x",
"vue-router": "4.x"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
},
"vue-router": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"storybook": {
"displayName": "Vue 3 Router",
"supportedFrameworks": [
"vue"
],
"icon": "https://github.com/NickMcBurney/storybook-vue3-router/blob/main/vue-logo.png?raw=true"
}
}