-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.84 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
{
"name": "@jls-digital/storybook-addon-code",
"version": "1.0.4",
"description": "This storybook addon provides the ability to display a panel on stories with any code you want. It's mostly a wrapper for [storybook's syntax highlighter](https://github.com/storybookjs/storybook/tree/main/code/ui/components/src/components/syntaxhighlighter), which is a wrapper for [prism.js](https://www.npmjs.com/package/prismjs).",
"exports": {
".": {
"node": "./dist/register.js",
"require": "./dist/register.js",
"import": "./dist/register.js"
},
"./manager": "./dist/register.js",
"./package.json": "./package.json"
},
"main": "dist/register.js",
"module": "dist/register.js",
"type": "module",
"files": [],
"scripts": {
"build": "tsup",
"build:watch": "npm run build -- --watch",
"lint": "eslint src/* --ignore-path .gitignore",
"lint-fix": "eslint src/ --ignore-path .gitignore --fix",
"format": "prettier src/ --check --ignore-path .gitignore",
"format-fix": "npm run format --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jls-digital/storybook-addon-code.git"
},
"keywords": [
"storybook",
"addon",
"code",
"source"
],
"author": "jls digital ag",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/react": "^18.2.67",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"tsup": "^8.0.2"
},
"peerDependencies": {
"@storybook/addons": "^7.6.17",
"@storybook/api": "^7.6.17",
"@storybook/components": "^8.0.2",
"@storybook/manager": "^8.0.2",
"@storybook/preview": "^8.0.2",
"react": "^18.2.0"
}
}