-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.92 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
{
"name": "react-github-markdown",
"version": "1.0.0-beta.4",
"description": "Github Markdown Editor & Viewer for React",
"scripts": {
"build": "rm -rf dist && rollup -c",
"lint": "eslint src/ --ext .ts,.tsx",
"lint-fix": "eslint --fix src/ --ext .ts,.tsx",
"storybook": "start-storybook -p 6006",
"build-storybook": "npm run build-storybook",
"type-check": "tsc --noEmit --emitDeclarationOnly false"
},
"contributors": [
"Advaith A J <[email protected]>",
"aswinshenoy <[email protected]>",
"Abhiram Krishna <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/traboda/react-github-markdown/issues"
},
"homepage": "https://github.com/traboda/react-github-markdown#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/traboda/react-github-markdown.git"
},
"keywords": [
"react",
"react-components",
"traboda",
"markdown",
"github",
"editor"
],
"devDependencies": {
"@babel/core": "^7.20.12",
"@primer/react": "^35.21.0",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.3.0",
"@rollup/plugin-typescript": "^11.0.0",
"@storybook/addon-a11y": "^6.5.16",
"@storybook/addon-actions": "^6.5.15",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/addon-interactions": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/builder-webpack5": "^6.5.15",
"@storybook/manager-webpack5": "^6.5.15",
"@storybook/react": "^6.5.15",
"@storybook/testing-library": "^0.0.13",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-footnote": "^3.0.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"babel-loader": "^8.3.0",
"clsx": "^1.2.1",
"css-loader": "^6.7.3",
"eslint": "^8.32.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.1",
"highlight.js": "^11.7.0",
"markdown-it": "^13.0.1",
"markdown-it-footnote": "^3.0.3",
"postcss": "^8.4.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.10.0",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-polyfill-node": "^0.11.0",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"storybook-dark-mode": "^2.0.5",
"style-loader": "^3.3.1",
"styled-components": "^5.3.8",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
},
"dependencies": {
"@github/markdown-toolbar-element": "^2.1.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts"
}