-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "ohbug-website",
"version": "1.0.0",
"private": true,
"description": "Ohbug's website and documentation.",
"license": "MIT",
"author": "chenyueban <jasonchan0527@gmail.com>",
"homepage": "https://github.com/ohbug-org/ohbug-website",
"bugs": {
"url": "https://github.com/ohbug-org/ohbug-website/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ohbug-org/ohbug-website"
},
"scripts": {
"dev": "vitepress dev docs",
"build": "vitepress build docs",
"serve": "vitepress serve docs",
"preinstall": "npx only-allow pnpm",
"update:deps": "pnpm update -i -r --latest",
"lint": "eslint . --fix",
"prepare": "husky install",
"release": "release-it"
},
"dependencies": {
"@ohbug/browser": "^2.3.0",
"vue-json-viewer": "3"
},
"devDependencies": {
"@chenyueban/eslint-config": "^1.0.12",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@release-it/conventional-changelog": "^5.1.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.23.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"release-it": "^15.4.1",
"vitepress": "1.0.0-alpha.13",
"vue": "^3.2.39"
}
}