generated from storybookjs/addon-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.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
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
{
"name": "@hiroyoshi-mori/storybook-css-framework-switcher",
"version": "0.0.9",
"description": "Easy switcher it switches CSS Framework used in preview",
"keywords": [
"css framework",
"storybook-addons"
],
"repository": {
"type": "git",
"url": "https://github.com/HiroyoshiMori/storybook-css-framework-switcher"
},
"license": "MIT",
"author": "Hiroyoshi Mori <[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": "run-p 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",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/traverse": "^7.23.9",
"@picocss/pico": "^2.0.3",
"@storybook/addon-essentials": "^8.0.5",
"@storybook/addon-interactions": "^8.0.5",
"@storybook/addon-links": "^8.0.5",
"@storybook/addon-mdx-gfm": "^8.0.5",
"@storybook/blocks": "^8.0.5",
"@storybook/components": "^8.0.5",
"@storybook/core-events": "^8.0.5",
"@storybook/manager": "^8.0.5",
"@storybook/manager-api": "^8.0.5",
"@storybook/preview": "^8.0.5",
"@storybook/preview-api": "^8.0.5",
"@storybook/react": "^8.0.5",
"@storybook/react-vite": "^8.0.5",
"@storybook/theming": "^8.0.5",
"@storybook/types": "^8.0.5",
"@types/node": "^18.15.0",
"@types/react": "^16.14.51",
"@types/react-dom": "^16.9.22",
"@vitejs/plugin-react": "^4.1.1",
"auto": "^11.0.4",
"boxen": "^7.1.1",
"bulma": "^0.9.4",
"cirrus-ui": "^0.7.2-patch.1",
"dedent": "^1.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prompts": "^2.4.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rimraf": "^5.0.5",
"simple-update-notifier": "^2.0.0",
"storybook": "^8.0.5",
"ts-dedent": "^2.2.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "^5.0.12",
"zx": "^7.2.3"
},
"overrides": {
"@babel/traverse": "$@babel/traverse",
"@storybook/react-vite": "$@storybook/react-vite",
"simple-update-notifier": "$simple-update-notifier",
"vite": "$vite"
},
"publishConfig": {
"access": "public"
},
"bundler": {
"exportEntries": [
"src/index.ts"
],
"managerEntries": [
"src/manager.ts"
],
"previewEntries": [
"src/preview.ts"
]
},
"storybook": {
"displayName": "CSS Framework Switcher",
"supportedFrameworks": [
"react"
],
"icon": "https://user-images.githubusercontent.com/321738/63501763-88dbf600-c4cc-11e9-96cd-94adadc2fd72.png"
},
"dependencies": {
"@storybook/test": "^8.0.5"
}
}