-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
80 lines (80 loc) · 2.17 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": "3.0.0",
"type": "module",
"author": "sibiraj-s",
"license": "MIT",
"repository": "github:sibiraj-s/marked-react",
"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"
},
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./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": "^15.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/manager-api": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/theming": "^8.4.7",
"@types/react": "^18.3.14",
"@types/react-dom": "^18.3.2",
"@vitest/coverage-v8": "^2.1.8",
"commitlint-config-non-conventional": "^1.0.1",
"eslint": "^8.57.0",
"eslint-config-pegasus": "^5.0.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-storybook": "^0.11.1",
"highlight.js": "^11.10.0",
"husky": "^9.1.7",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"publint": "^0.2.12",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-lowlight": "^3.0.1",
"storybook": "^8.4.7",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}