-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
{
"name": "@kemuridama/storybook-addon-github",
"version": "1.3.0",
"repository": {
"type": "git",
"url": "https://github.com/kemuridama/storybook-addon-github"
},
"description": "A Storybook addon that allows you to link a source code of your story on GitHub.",
"keywords": [
"storybook-addons",
"github",
"code"
],
"main": "manager.js",
"files": [
"dist",
"README.md",
"*.js",
"*.d.ts"
],
"scripts": {
"prebuild": "rimraf dist",
"check": "run-s check:*",
"check:eslint": "eslint --ext .js,.jsx,.ts,.tsx .",
"check:prettier": "prettier --check .",
"build": "npm-run-all build:*",
"build:esm": "babel ./src -d dist --extensions \".js,.jsx,.ts,.tsx\"",
"build:type": "tsc --declaration --emitDeclarationOnly --outDir dist",
"prepublish": "npm run build"
},
"author": "Ryo Ochiai <[email protected]> (https://kemuridama.jp)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/react": "^18.2.12",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"typescript": "^5.1.3"
},
"storybook": {
"displayName": "GitHub",
"supportedFrameworks": [
"react"
]
},
"peerDependencies": {
"@storybook/components": "^7 || ^8",
"@storybook/manager-api": "^7 || ^8",
"react": "^17 || ^18"
}
}