-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.44 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.44 KB
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
{
"name": "react-render-to-markdown",
"version": "19.0.1",
"description": "render React components to Markdown strings for SSG-MD",
"repository": {
"type": "git",
"url": "git+https://github.com/SoonIter/react-render-to-markdown.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": ["dist"],
"scripts": {
"bump": "npx bumpp",
"prepare": "simple-git-hooks && npm run build",
"dev": "rslib build -w",
"build": "rslib build",
"test": "vitest run",
"format": "biome format",
"lint:write": "biome check --unsafe --write"
},
"simple-git-hooks": {
"pre-commit": "npm run lint:write"
},
"devDependencies": {
"react": "^19",
"vitest": "^3.2.4",
"@biomejs/biome": "^1.9.4",
"@rslib/core": "0.15.1",
"rsbuild-plugin-publint": "^0.3.3",
"typescript": "^5.9.3",
"simple-git-hooks": "^2.13.1",
"@types/node": "^24.8.1",
"@types/react": "^19",
"@types/react-reconciler": "^0.33.0"
},
"dependencies": {
"react-reconciler": "0.33.0"
},
"peerDependencies": {
"react": ">=19"
},
"keywords": ["react", "markdown", "renderer", "react-reconciler"],
"author": "SoonIter <sooniter@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "pnpm@10.28.2"
}