-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 2.4 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
{
"name": "hazel-plus",
"description": "A custom components and hooks Library",
"private": true,
"version": "0.1.3",
"scripts": {
"initial": "initial-scan .docs --srcDir packages && npx rimraf .docs/node_modules",
"docs:dev": "pnpm run initial && vitepress dev .docs --host",
"docs:build": "vitepress build .docs",
"docs:gitpage": "npx cross-env site=gitpage vitepress build .docs",
"docs:vercel": "npx cross-env site=vercel vitepress build .docs",
"docs:serve": "vitepress serve .docs --host",
"dev": "vite --host",
"build": "pnpm build:hooks && vue-tsc --noEmit && vite build",
"build:hooks": "cd packages/hooks && pnpm build",
"preview": "vite preview --host",
"eslint": "eslint . --ext .ts",
"prepare": "husky install",
"type": "tsc",
"release": "pnpm run build && standard-version"
},
"standard-version": {
"skip": {
"tag": true
}
},
"dependencies": {
"@hazel-plus/hooks": "workspace:*"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@ruabick/md-demo-plugins": "0.2.6",
"@ruabick/vite-plugin-gen-api-doc": "^0.2.4",
"@ruabick/vite-plugin-gen-temp": "^0.2.4",
"@ruabick/vitepress-demo-block": "^0.2.4",
"@types/node": "^18.7.9",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"@vitejs/plugin-vue": "^3.0.0",
"@vue-hooks-plus/md-demo-plugins": "^1.1.0",
"@vue-hooks-plus/vite-plugin-gen-temp": "1.4.0",
"@vue-hooks-plus/vitepress-demo-block": "^1.3.5",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.3.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"sass": "^1.54.4",
"standard-version": "^9.5.0",
"typescript": "^4.6.4",
"unplugin-vue-define-options": "0.11.0-alpha.0",
"vite": "^3.0.0",
"vite-plugin-dts": "^1.4.1",
"vitepress": "1.0.0-alpha.9",
"vue": "^3.2.37",
"vue-router": "^4.1.3",
"vue-tsc": "^0.38.4"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
]
}
},
"keywords": [
"ui",
"components",
"hooks",
"vue3"
],
"repository": {
"type": "git",
"url": "https://github.com/hongaah/hazel-plus"
},
"homepage": "https://hongaah.github.io/hazel-plus/"
}