generated from storybookjs/addon-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.44 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
{
"name": "storybook-spotify",
"version": "3.1.1",
"description": "Add Spotify to the Storybook panel",
"keywords": [
"storybook-addons",
"storybook-spotify",
"storybook-addon-spotify",
"storybook-addon-spotify-playlist",
"storybook-addon-spotify-album",
"storybook-addon-spotify-song",
"storybook-addon-spotify-podcast",
"storybook-addon-spotify-episode",
"storybook-panel-spotify",
"storybook-panel-spotify-playlist",
"storybook-panel-spotify-album",
"storybook-panel-spotify-song",
"storybook-panel-spotify-podcast",
"storybook-panel-spotify-episode",
"panel",
"spotify",
"spotify-iframe"
],
"repository": {
"type": "git",
"url": "https://github.com/silversonicaxel/storybook-addon-spotify"
},
"author": {
"name": "Alessandro (silversonicaxel) Rabitti",
"url": "https://github.com/silversonicaxel"
},
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/ts/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"scripts": {
"clean": "rimraf ./dist",
"buildBabel": "concurrently \"yarn buildBabel:cjs\" \"yarn buildBabel:esm\"",
"buildBabel:cjs": "babel ./src -d ./dist/cjs --extensions \".js,.jsx,.ts,.tsx\"",
"buildBabel:esm": "babel ./src -d ./dist/esm --env-name esm --extensions \".js,.jsx,.ts,.tsx\"",
"buildTsc": "tsc --declaration --emitDeclarationOnly --outDir ./dist/ts",
"prebuild": "yarn clean",
"build": "concurrently \"yarn buildBabel\" \"yarn buildTsc\"",
"build:watch": "concurrently \"yarn buildBabel:esm -- --watch\" \"yarn buildTsc -- --watch\"",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "storybook dev -p 6006",
"start": "concurrently \"yarn build:watch\" \"yarn storybook -- --no-manager-cache --quiet\"",
"build-storybook": "storybook build",
"prerelease": "zx scripts/prepublish-checks.mjs",
"release": "yarn build && auto shipit",
"eject-ts": "zx scripts/eject-typescript.mjs"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@storybook/addon-essentials": "^8.2.0",
"@storybook/cli": "^8.2.4",
"@storybook/react": "^8.2.0",
"@storybook/react-vite": "^8.2.4",
"@types/dedent": "^0.7.2",
"@vitejs/plugin-react": "^4.3.1",
"auto": "^11.1.6",
"boxen": "^8.0.0",
"concurrently": "^8.2.2",
"dedent": "^1.5.3",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rimraf": "^6.0.1",
"storybook": "^8.2.6",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"zx": "^8.1.4"
},
"peerDependencies": {
"@storybook/components": "^8.2.0",
"@storybook/core-events": "^8.2.0",
"@storybook/manager-api": "^8.2.0",
"@storybook/theming": "^8.2.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"storybook": {
"displayName": "Addon Spotify",
"supportedFrameworks": [
"react"
],
"unsupportedFrameworks": [
"vue",
"angular"
],
"icon": "https://raw.githubusercontent.com/silversonicaxel/storybook-addon-spotify/main/icon.png"
}
}