This repository was archived by the owner on Mar 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.48 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.48 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@yuiblog/markdown",
"version": "0.1.5",
"description": "Markdown renderer for YuiBlog.",
"repository": {
"url": "YuiBlog/markdown",
"type": "git"
},
"main": "dist/markdown.cjs.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm test && npm run build",
"test": "echo 0",
"build": "bili src/index.ts --js typescript2",
"example": "poi --serve example/index.js",
"build:example": "poi --prod example/index.js"
},
"author": {
"name": "Mikazuki Fuyuno",
"email": "mikazuki_fuyuno@outlook.com"
},
"license": "MIT",
"poi": {
"output": {
"dir": "example/dist",
"publicUrl": "./"
},
"plugins": [
{
"resolve": "@poi/plugin-typescript"
}
]
},
"bili": {
"format": [
"cjs",
"umd"
],
"name": "markdown",
"plugins": [
"vue"
]
},
"devDependencies": {
"@poi/plugin-typescript": "12.0.1",
"@types/marked": "0.6.0",
"@types/prismjs": "1.9.0",
"@vue/component-compiler-utils": "2.5.0",
"bili": "3.4.2",
"node-sass": "4.11.0",
"poi": "12.4.3",
"rollup-plugin-typescript2": "0.20.1",
"rollup-plugin-vue": "4.3.2",
"sass-loader": "7.1.0",
"typescript": "3.4.3",
"vue-template-compiler": "2.5.22"
},
"dependencies": {
"marked": "^0.6.0",
"prismjs": "^1.15.0",
"vue": "^2.5.22",
"vue-class-component": "^6.3.2",
"vue-property-decorator": "^7.3.0"
}
}