-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 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
{
"name": "mm-notes",
"type": "module",
"private": true,
"version": "1.0.0",
"packageManager": "pnpm@8.0.0",
"description": "Development related notes",
"repository": {
"type": "git",
"url": "git+https://github.com/maomao1996/mm-notes.git"
},
"bugs": {
"url": "https://github.com/maomao1996/mm-notes/issues"
},
"license": "MIT",
"homepage": "https://github.com/maomao1996/mm-notes#readme",
"author": "maomao1996 <1714487678@qq.com>",
"scripts": {
"dev": "cross-env NODE_ENV=development vitepress dev docs --port=8732",
"build": "npm run daily-notes && vitepress build docs",
"build:github": "cross-env APP_BASE_PATH=/mm-notes/ npm run build",
"build:docs": "vitepress build docs",
"daily-notes": "node ./scripts/daily-notes.js",
"preview": "vitepress preview docs --port 8730",
"lint": "prettier --write .",
"prepare": "husky install"
},
"devDependencies": {
"@femm/prettier": "^1.1.0",
"@femm/verify-commit": "^1.0.1",
"@giscus/vue": "^2.3.0",
"@mdit-vue/shared": "^0.12.1",
"@octokit/rest": "^19.0.13",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.17.15",
"cross-env": "^7.0.3",
"dayjs": "^1.11.9",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"medium-zoom": "^1.0.8",
"prettier": "^2.8.8",
"sass": "^1.67.0",
"vite-plugin-markdown-preview": "^1.1.1",
"vitepress": "1.0.0-rc.20",
"vue": "^3.3.4"
},
"lint-staged": {
"*.{js,ts,css,md,json}": [
"prettier --write"
]
},
"prettier": "@femm/prettier"
}