-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "vitepress-versioning-plugin",
"version": "1.2.1",
"description": "A highly customizable versioning plugin for VitePress v1",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src/components"
],
"type": "module",
"scripts": {
"prepublish": "tsup",
"build": "tsup",
"docs": "vitepress dev docs",
"docs:build": "vitepress build docs"
},
"repository": {
"type": "git",
"url": "https://github.com/imb11/vitepress-versioning-plugin.git"
},
"keywords": [
"vitepress",
"versioning",
"i18n",
"plugin",
"vite"
],
"author": "Calum H. (imb11)",
"license": "MIT",
"devDependencies": {
"@types/cli-color": "^2.0.6",
"@types/node": "^20.14.11",
"@vueuse/core": "^10.11.0",
"tsup": "^8.1.2",
"typescript": "^5.5.3",
"vue": "^3.4.32"
},
"dependencies": {
"@types/lodash": "^4.17.7",
"cli-color": "^2.0.4",
"json5": "^2.2.3",
"lodash": "^4.17.21",
"vite": "^5.3.4",
"vitepress": "1.3.1"
}
}