-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.3 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
{
"name": "@etchteam/storybook-addon-github-link",
"version": "1.0.2",
"description": "Link stories to source code in Github",
"type": "module",
"main": "dist/manager.js",
"exports": {
"./manager": "./dist/manager.js",
"./package.json": "./package.json"
},
"files": [
"dist/**/*",
"README.md",
"manager.js"
],
"scripts": {
"prepare": "tsup",
"storybook": "npm run prepare && storybook dev -p 6006",
"build-storybook": "storybook build",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/etchteam/storybook-addon-github-link.git"
},
"keywords": [
"storybook",
"addon",
"storybook-addon",
"github",
"link"
],
"author": "etchteam",
"license": "MIT",
"bugs": {
"url": "https://github.com/etchteam/storybook-addon-github-link/issues"
},
"publishConfig": {
"access": "public"
},
"storybook": {
"displayName": "Github Link",
"icon": "https://raw.githubusercontent.com/etchteam/storybook-addon-github-link/main/github-link-storybook-logo.png"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@etchteam/eslint-config": "^1.10.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-webpack5-compiler-swc": "^1.0.2",
"@storybook/blocks": "^8.0.9",
"@storybook/client-logger": "^8.0.9",
"@storybook/components": "^8.0.9",
"@storybook/core-events": "^8.0.9",
"@storybook/icons": "^1.2.9",
"@storybook/manager": "^8.3.6",
"@storybook/manager-api": "^8.0.9",
"@storybook/react-webpack5": "^8.0.9",
"@storybook/theming": "^8.0.9",
"@swc/core": "^1.4.17",
"eslint": "^8.0.0",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semantic-release": "^23.0.0",
"storybook": "^8.0.9",
"swc-loader": "^0.2.6",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
}
}