-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.47 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
{
"name": "vuepress-plugin-i18n",
"version": "0.8.4",
"description": "i18n plugin for VuePress v2",
"keywords": [
"vuepress",
"vuepress2",
"vuepress-plugin",
"i18n"
],
"homepage": "https://github.com/DreamOfIce/vuepress-plugin-i18n#readme",
"bugs": {
"url": "https://github.com/DreamOfIce/vuepress-plugin-i18n/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DreamOfIce/vuepress-plugin-i18n.git"
},
"license": "MIT",
"author": "冰雪殇璃陌梦 <[email protected]> (https://www.dreamofice.cn)",
"type": "module",
"exports": {
".": "./dist/node/index.js",
"./client": "./dist/client/index.js",
"./package.json": "./package.json"
},
"main": "./dist/node/index.js",
"types": "./dist/node/index.d.ts",
"files": [
"dist",
"README_zh-CN.md"
],
"scripts": {
"build": "tsup",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:eslint": "eslint --ext .ts --fix ./src",
"lint:prettier": "prettier --write .",
"prepare": "husky install",
"release": "dotenv release-it",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@vuepress/client": "2.0.0-beta.67",
"@vuepress/core": "2.0.0-beta.67",
"@vuepress/utils": "2.0.0-beta.67",
"chokidar": "^3.5.3",
"vue": "^3.3.4",
"vuepress": "2.0.0-beta.67",
"vuepress-shared": "2.0.0-beta.237"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@release-it/conventional-changelog": "^7.0.2",
"@tsconfig/node-lts": "^18.12.5",
"@tsconfig/strictest": "^2.0.2",
"@types/node": "^18.18.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vue/tsconfig": "^0.4.0",
"@vuepress/markdown": "2.0.0-beta.67",
"@vuepress/plugin-git": "2.0.0-beta.67",
"dotenv-cli": "^7.3.0",
"esbuild-plugin-vue3": "^0.3.2",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"nano-staged": "^0.8.0",
"prettier": "^3.0.3",
"prettier-plugin-packagejson": "^2.4.5",
"release-it": "^16.2.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"vuepress": "2.0.0-beta.67"
},
"packageManager": "[email protected]",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"pnpm": {
"overrides": {
"ts-node": "npm:@dreamofice/ts-node@^10.9.2"
}
}
}