-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
{
"name": "@commi/rollup-plugin-md2vue",
"version": "1.0.0",
"description": "Roll markdown to Vue 3 component with Rollup, extract 'demo' and convert it into execution effect and code display.",
"main": "dist/umd/index.js",
"module": "dist/esm/index.js",
"typings": "dist/types/index.d.ts",
"scripts": {
"test": "jest",
"dev": "rimraf dist && rollup -c -w",
"build": "rimraf dist && rollup -c && tsc --emitDeclarationOnly",
"prepublish": "yarn build"
},
"files": [
"dist",
"README.md"
],
"dependencies": {
"@rollup/pluginutils": "^4.1.1",
"markdown-it": "^8.4.1",
"markdown-it-container": "^2.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-run": "^2.1.0",
"babel-core": "^6.26.3",
"babel-jest": "^27.2.2",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"jest": "^27.2.2",
"rimraf": "^3.0.2",
"rollup": "^2.57.0",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"peerDependencies": {
"highlight.js": "^10.4.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodingCommunism/rollup-md2vue.git"
},
"keywords": [
"rollup",
"plugin"
],
"author": "liuyu666",
"license": "ISC",
"bugs": {
"url": "https://github.com/CodingCommunism/rollup-md2vue/issues"
},
"homepage": "https://github.com/CodingCommunism/rollup-md2vue#readme",
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"testEnvironment": "jsdom"
}
}