-
-
Notifications
You must be signed in to change notification settings - Fork 151
/
package.json
43 lines (43 loc) · 1.26 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
{
"name": "learning-vue3",
"version": "2.0.0",
"description": "A starting learning tutorial on Vue 3.0 + TypeScript, suitable for complete Vue novices and Vue 2.0 veterans, incorporating some of my own practical experience on the basis of official documents.",
"author": "chengpeiquan <[email protected]>",
"homepage": "https://vue3.chengpeiquan.com",
"private": true,
"scripts": {
"dev": "vitepress dev --host",
"build": "vitepress build",
"preview": "vitepress preview",
"deploy": "npm run build && gh-pages -d dist",
"backup": "git add . && git commit -m \"chore: backup\" && git push",
"up": "npx npm-check-updates -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chengpeiquan/learning-vue3.git"
},
"keywords": [
"vue3",
"vue",
"TypeScript",
"ts"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/chengpeiquan/learning-vue3/issues"
},
"dependencies": {
"@bassist/utils": "^0.12.0",
"@web-analytics/vue": "^0.2.2"
},
"devDependencies": {
"@bassist/tsconfig": "^0.1.1",
"@types/node": "^20.4.8",
"@withtypes/md5": "^0.1.1",
"gitalk": "^1.8.0",
"vite-plugin-banner": "^0.7.0",
"vitepress": "1.0.0-beta.7",
"vue": "^3.3.4"
}
}