forked from sibiraj-s/marked-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.19 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": "marked-react",
"description": "Render Markdown as React components",
"version": "2.0.0",
"type": "module",
"author": "sibiraj-s",
"license": "MIT",
"repository": "https://github.com/sibiraj-s/marked-react.git",
"bugs": "https://github.com/sibiraj-s/marked-react/issues",
"homepage": "https://github.com/sibiraj-s/marked-react#readme",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"keywords": [
"react",
"markdown",
"marked",
"markedjs",
"no dangerouslySetInnerHTML"
],
"files": [
"dist/"
],
"scripts": {
"lint": "eslint . --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx",
"build": "tsup",
"dev": "storybook dev -p 7007",
"build:storybook": "storybook build",
"test": "vitest --coverage",
"prepare": "is-ci || husky install",
"prepublishOnly": "is-ci || (npm run build && publint)"
},
"peerDependencies": {
"react": "^16.8.0 || >=17.0.0"
},
"dependencies": {
"marked": "^6.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@storybook/addon-essentials": "^7.6.10",
"@storybook/manager-api": "^7.6.10",
"@storybook/react": "^7.6.10",
"@storybook/react-vite": "^7.6.10",
"@storybook/theming": "^7.6.10",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vitest/coverage-v8": "^1.2.1",
"commitlint-config-non-conventional": "^1.0.1",
"eslint": "^8.56.0",
"eslint-config-pegasus": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"highlight.js": "^11.9.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"publint": "^0.2.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-lowlight": "^3.0.0",
"storybook": "^7.6.10",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
}
}