-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
103 lines (103 loc) · 2.99 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "vue-showdown",
"version": "4.2.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)",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/vue-showdown.d.ts",
"default": "./dist/vue-showdown.esm.js"
},
"require": {
"types": "./dist/vue-showdown.d.ts",
"default": "./dist/vue-showdown.cjs.js"
}
},
"./package.json": "./package.json"
},
"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": "rollup --config rollup.config.js && rimraf dist/types",
"clean": "rimraf dist",
"dev": "vite",
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"format": "prettier --write .",
"lint": "eslint . && prettier --check .",
"prepare": "husky",
"release": "pnpm release:check && pnpm release:version && pnpm release:publish",
"release:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release:check": "pnpm clean && pnpm build && pnpm lint",
"release:publish": "pnpm publish",
"release:version": "bumpp -r --execute=\"pnpm release:changelog\" --commit \"build: publish v%s\" --all"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.!(js|ts|vue)": "prettier --write --ignore-unknown",
"*.(js|ts|vue)": [
"eslint --fix",
"prettier --write"
],
"package.json": "sort-package-json"
},
"prettier": "@meteorlxy/prettier-config",
"dependencies": {
"@types/showdown": "^2.0.6",
"showdown": "^2.1.0",
"vue": "^3.5.9"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@meteorlxy/eslint-config": "^4.6.0",
"@meteorlxy/prettier-config": "^4.0.0",
"@meteorlxy/tsconfig": "^4.6.0",
"@rollup/plugin-terser": "^0.4.4",
"@vitejs/plugin-vue": "^5.1.4",
"@vuepress/bundler-vite": "2.0.0-rc.15",
"@vuepress/theme-default": "2.0.0-rc.42",
"bumpp": "^9.5.2",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.11.1",
"eslint-plugin-vue": "^9.28.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.22.4",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-typescript2": "^0.36.0",
"sort-package-json": "^2.10.1",
"typescript": "^5.6.2",
"vite": "~5.4.8",
"vue-eslint-parser": "^9.4.3",
"vuepress": "2.0.0-rc.15"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.16.0"
}
}