-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.26 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
{
"name": "@veno-ui/markdown",
"version": "0.6.2",
"description": "Markdown renderer for Veno UI",
"author": "wxm",
"license": "MIT",
"keywords": [
"markdown",
"markdown renderer",
"veno-ui markdown"
],
"homepage": "https://github.com/qq15725/veno-ui/blob/master/packages/markdown",
"repository": {
"type": "git",
"url": "git+https://github.com/qq15725/veno-ui.git"
},
"bugs": {
"url": "https://github.com/qq15725/veno-ui/issues"
},
"scripts": {
"build": "rollup -c",
"clean": "rimraf dist"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./*": "./*"
},
"sideEffects": false,
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=14"
},
"dependencies": {
"@veno-ui/utils": "workspace:*",
"chalk": "^5.2.0",
"diacritics": "^1.3.0",
"gray-matter": "^4.0.3",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.7",
"markdown-it-container": "^3.0.0",
"markdown-it-emoji": "^2.0.2"
},
"devDependencies": {
"@types/markdown-it": "^12.2.3"
},
"publishConfig": {
"access": "public"
}
}