-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
98 lines (98 loc) · 2.4 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
97
98
{
"name": "writr",
"version": "4.3.0",
"description": "Markdown Rendering Simplified",
"type": "module",
"main": "./dist/writr.js",
"types": "./dist/writr.d.ts",
"exports": {
".": {
"import": "./dist/writr.js"
}
},
"repository": "https://github.com/jaredwray/writr.git",
"author": "Jared Wray <[email protected]>",
"engines": {
"node": ">=20"
},
"license": "MIT",
"keywords": [
"markdown",
"html",
"renderer",
"markdown-to-html",
"toc",
"table-of-contents",
"emoji",
"syntax-highlighting",
"markdown-processor",
"github-flavored-markdown",
"gfm",
"remark-plugin",
"rehype-plugin",
"markdown-editor",
"content-management",
"documentation-tool",
"blogging",
"markdown-extension",
"seo-friendly",
"markdown-anchors",
"remark",
"rehype",
"react",
"react-component",
"react-markdown",
"markdown-to-react"
],
"scripts": {
"clean": "rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./site/README.md ./site/dist",
"build": "rimraf ./dist && tsup src/writr.ts --format esm --dts --clean",
"prepare": "npm run build",
"test": "xo --fix && vitest run --coverage",
"website:build": "rimraf ./site/README.md ./site/dist && npx docula build -s ./site -o ./site/dist",
"website:serve": "rimraf ./site/README.md ./site/dist && npx docula serve -s ./site -o ./site/dist"
},
"dependencies": {
"cacheable": "^1.8.7",
"hookified": "^1.6.0",
"html-react-parser": "^5.2.2",
"js-yaml": "^4.1.0",
"react": "^19.0.0",
"rehype-highlight": "^7.0.1",
"rehype-katex": "^7.0.1",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-emoji": "^5.0.1",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-mdx": "^3.1.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-toc": "^9.0.0",
"unified": "^11.0.5"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@vitest/coverage-v8": "^2.1.8",
"docula": "^0.9.6",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"webpack": "^5.97.1",
"xo": "^0.60.0"
},
"xo": {
"ignores": [
"docula.config.*"
]
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}