forked from xinlei3166/vitepress-theme-demoblock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.22 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "vitepress-theme-demoblock",
"version": "3.0.7",
"type": "module",
"description": "vitepress-theme-demoblock",
"repository": {
"type": "git",
"url": "https://github.com/xinlei3166/vitepress-theme-demoblock"
},
"keywords": [
"vitepress",
"vue",
"theme",
"demoblock"
],
"bugs": {
"url": "https://github.com/xinlei3166/vitepress-theme-demoblock/issues"
},
"homepage": "https://github.com/xinlei3166/vitepress-theme-demoblock#readme",
"author": "君惜",
"license": "MIT",
"bin": {
"vitepress-register-components": "bin/vitepress-register-components.js",
"vitepress-rc": "bin/vitepress-register-components.js"
},
"files": [
"bin",
"dist",
".prettierrc"
],
"main": "dist/node/index.mjs",
"types": "dist/node/index.d.ts",
"exports": {
".": {
"types": "./dist/node/index.d.ts",
"import": "./dist/node/index.mjs"
},
"./dist/*": "./dist/*"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "simple-git-hooks",
"test": "vitest",
"watch-build": "chokidar 'src/**/*.ts' 'src/**/*.vue' -c 'pnpm run build'",
"build": "unbuild",
"stub": "unbuild --stub",
"lint": "eslint --fix --ext .js,.jsx,.ts,.tsx,.vue",
"release": "yunque-release",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"dependencies": {
"@floating-ui/vue": "^1.0.6",
"@mdit-vue/plugin-sfc": "^2.0.0",
"@vue/compiler-sfc": "^3.4.21",
"@vueuse/core": "^10.9.0",
"camelcase": "^8.0.0",
"globby": "^14.0.1",
"hash-sum": "^2.0.0",
"markdown-it": "^14.1.0",
"markdown-it-container": "^4.0.0",
"minimist": "^1.2.8",
"picocolors": "^1.0.0",
"prettier": "^3.2.5",
"remark": "^15.0.1",
"remark-directive": "^3.0.0",
"remark-frontmatter": "^5.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"shiki": "^1.2.0",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0",
"vitepress": "^1.0.1",
"vue": "^3.4.21",
"yaml": "^2.4.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/hash-sum": "^1.0.2",
"@types/markdown-it": "^13.0.7",
"@types/minimist": "^1.2.5",
"@types/node": "^20.11.30",
"@types/unist": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@yunquejs/release": "^0.1.9",
"chokidar-cli": "^3.0.0",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.24.0",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.7.1",
"typescript": "^5.4.3",
"unbuild": "^2.0.0",
"vite": "^5.2.6",
"vitest": "^1.4.0",
"vue-eslint-parser": "^9.4.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false",
"commit-msg": "pnpm exec tsx scripts/verifyCommit.ts $1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --fix"
]
},
"engines": {
"node": ">=16.0.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
]
}
}
}