-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.21 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
{
"name": "vitepress-translation-helper",
"version": "0.2.1",
"description": "A translation toolkit for VitePress, made by vuejs-translations.",
"keywords": [
"vitepress",
"translation",
"helper"
],
"author": "Jinjiang <[email protected]>",
"license": "MIT",
"bin": {
"v-translation": "./lib/bin.js"
},
"main": "./lib/index.js",
"files": [
"tsconfig.json",
"bin/*",
"lib/*",
"ui/*",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs-translations/vitepress-translation-helper.git"
},
"bugs": {
"url": "https://github.com/vuejs-translations/vitepress-translation-helper/issues"
},
"homepage": "https://github.com/vuejs-translations/vitepress-translation-helper#readme",
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"prepare": "pnpm run build",
"prepublish": "pnpm run build"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^20.10.8",
"typescript": "^5.3.3",
"vitepress": "^1.0.0",
"vue": "^3.4.8"
},
"peerDependencies": {
"vitepress": "^1.0.0",
"vue": "^3.4.8"
},
"dependencies": {
"minimist": "^1.2.8",
"simple-git": "^3.22.0"
}
}