generated from storybookjs/addon-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.63 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
{
"name": "storybook-addon-theme-provider",
"version": "0.2.8",
"description": "Storybook addon to manage global themes provided by Styled components, Emotion or any other solution based on React component. Compatible with Storybook versions 7 and 8",
"keywords": [
"emotion",
"styled components",
"theme",
"provider",
"storybook-addons",
"storybook",
"react",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/morewings/storybook-addon-theme-provider"
},
"author": "Dima Vyshnkiakov <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"type": "module",
"scripts": {
"clean": "rimraf ./dist",
"prebuild": "run-s clean",
"build": "vite build",
"build:watch": "NODE_ENV=development run-s 'build --watch'",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "storybook dev -p 6006 --no-open",
"build-storybook": "storybook build"
},
"devDependencies": {
"@storybook/addon-essentials": "8.3.6",
"@storybook/addon-links": "8.3.6",
"@storybook/react": "8.3.6",
"@storybook/react-vite": "8.3.6",
"@types/node": "18.19.64",
"@types/react": "18.3.12",
"@vitejs/plugin-react": "4.3.3",
"@yelo/rollup-node-external": "1.0.1",
"npm-run-all2": "6.2.6",
"prettier": "3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "6.0.1",
"storybook": "8.3.6",
"typescript": "5.4.5",
"vite": "5.4.11",
"vite-plugin-dts": "4.3.0"
},
"peerDependencies": {
"@storybook/components": ">=7.0.0",
"@storybook/manager-api": ">=7.0.0",
"@storybook/preview-api": ">=7.0.0",
"@storybook/theming": ">=7.0.0",
"@storybook/types": ">=7.0.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"@storybook/components": {
"optional": true
},
"@storybook/manager-api": {
"optional": true
},
"@storybook/preview-api": {
"optional": true
},
"@storybook/theming": {
"optional": true
},
"@storybook/types": {
"optional": true
}
},
"storybook": {
"displayName": "Theme provider addon",
"supportedFrameworks": [
"react"
],
"unsupportedFrameworks": [
"vue",
"angular"
],
"icon": "https://raw.githubusercontent.com/morewings/storybook-addon-theme-provider/master/logo.jpg"
},
"dependencies": {
"@phosphor-icons/react": "^2.1.7"
}
}