forked from meteorlxy/vue-showdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.14 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
66
67
68
69
70
71
72
{
"name": "vue-showdown",
"version": "3.1.0",
"description": "Use showdown as a vue component",
"keywords": [
"vue",
"showdown"
],
"homepage": "https://vue-showdown.js.org",
"repository": {
"type": "git",
"url": "git+https://github.com/meteorlxy/vue-showdown.git"
},
"license": "MIT",
"author": "meteorlxy <[email protected]> (https://www.meteorlxy.cn)",
"main": "dist/vue-showdown.cjs.js",
"unpkg": "dist/vue-showdown.min.js",
"module": "dist/vue-showdown.esm.js",
"browser": "dist/vue-showdown.min.js",
"types": "dist/vue-showdown.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && rollup --config rollup.config.js && rimraf dist/types",
"dev": "vite",
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"lint": "eslint --ext .js,.ts,.vue .",
"prepare": "husky install",
"version": "npm run lint && npm run build && conventional-changelog -p angular -i CHANGELOG.md -s -r 1 && git add dist CHANGELOG.md"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.{json,yml,html}": "prettier --write",
"package.json": "sort-package-json"
},
"prettier": "@meteorlxy/prettier-config",
"dependencies": {
"@types/showdown": "^1.9.4",
"showdown": "^1.9.1",
"vue": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@meteorlxy/eslint-config-prettier": "^2.5.0",
"@meteorlxy/eslint-config-prettier-typescript-vue": "^2.5.0",
"@meteorlxy/prettier-config": "^2.3.0",
"@vitejs/plugin-vue": "^2.0.1",
"@vuepress/utils": "2.0.0-beta.33",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.6.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.63.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"sort-package-json": "^1.53.1",
"typescript": "^4.5.4",
"vite": "^2.7.10",
"vuepress": "2.0.0-beta.33"
}
}