This repository was archived by the owner on Jan 9, 2024. It is now read-only.
forked from whitespace-se/storybook-addon-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.73 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
{
"name": "@whitespace/storybook-addon-html",
"version": "5.4.0",
"description": "A Storybook addon that extracts and displays compiled syntax-highlighted HTML",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist/**/*",
"README.md",
"*.js"
],
"keywords": [
"addon",
"storybook",
"html",
"storybook-addon",
"code",
"popular"
],
"repository": {
"type": "git",
"url": "https://github.com/lmestel/storybook-addon-html.git"
},
"scripts": {
"build:cjs": "babel ./src -d ./dist/cjs --extensions \".js,.jsx\"",
"build:esm": "babel ./src -d ./dist/esm --env-name esm --extensions \".js,.jsx\"",
"prebuild": "yarn clean",
"build": "concurrently \"yarn build:cjs\" \"yarn build:esm\"",
"build:watch": "babel --watch -d ./dist ./src",
"clean": "rm -rf ./dist",
"format": "prettier --write '**/*.{js,json,md,css,yml}'"
},
"author": "Whitespace",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.1",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@storybook/addons": "^6.5.12",
"@storybook/react": "^6.5.12",
"concurrently": "^7.4.0",
"eslint": "^8.24.0",
"eslint-plugin-react": "^7.31.8",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"peerDependencies": {
"@storybook/addons": "^6",
"react": "^16.8.0 || ^17 || ^18",
"react-dom": "^16.8.0 || ^17 || ^18"
},
"dependencies": {
"@babel/generator": "^7.19.0",
"@babel/parser": "^7.19.1",
"@storybook/api": "^6.5.12",
"@storybook/components": "^6.5.12",
"prettier": "^2.7.1",
"react-syntax-highlighter": "^15.5.0"
}
}