-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.61 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
{
"name": "vue-markdown-viewer",
"type": "module",
"version": "2.0.1",
"packageManager": "[email protected]",
"license": "MIT",
"repository": "hojas/vue-markdown-viewer",
"bugs": "https://github.com/hojas/vue-markdown-viewer/issues",
"keywords": [
"remark",
"unified",
"markdown",
"commonmark",
"gfm",
"ast",
"vue",
"vue-component",
"component"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue-markdown-viewer.js",
"require": "./dist/vue-markdown-viewer.cjs"
}
},
"main": "./dist/vue-markdown-viewer.cjs",
"module": "./dist/vue-markdown-viewer.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev:vue": "node ./scripts/dev.cjs --demo=vue",
"dev:nuxt": "node ./scripts/dev.cjs --demo=nuxt",
"build": "node ./scripts/build.cjs",
"build:demo": "pnpm build && node ./scripts/build-demo.cjs",
"lint": "eslint .",
"push": "pnpm build && npm publish"
},
"dependencies": {
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"unified": "^11.0.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.2",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/node": "^22.9.3",
"eslint": "^9.15.0",
"rollup": "^4.27.4",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-vue": "^6.0.0",
"shelljs": "^0.8.5",
"typescript": "^5.7.2",
"unplugin-vue": "^5.1.5",
"vite": "^5.4.11",
"vue-tsc": "^2.1.10"
}
}