-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "katolan",
"type": "module",
"private": true,
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "Development related notes",
"repository": {
"type": "git",
"url": "git+https://github.com/acgtap/KatoLan.git"
},
"bugs": {
"url": "https://github.com/acgtap/KatoLan/issues"
},
"license": "MIT",
"homepage": "https://github.com/acgtap/KatoLan#readme",
"author": "xiaomiao <[email protected]>",
"scripts": {
"dev": "cross-env NODE_ENV=development vitepress dev docs --port=8732",
"build": "vitepress build docs",
"build:github": "cross-env APP_BASE_PATH=/mm-notes/ npm run build",
"lint": "prettier --write .",
"prepare": "husky install"
},
"devDependencies": {
"@femm/prettier": "^1.0.1",
"@femm/verify-commit": "^1.0.1",
"@mdit-vue/shared": "^0.12.0",
"@types/node": "^18.13.0",
"cross-env": "^7.0.3",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"sass": "^1.58.3",
"sitemap": "^7.1.1",
"vitepress": "1.0.0-alpha.60",
"vue": "^3.2.47"
},
"lint-staged": {
"*.{js,ts,css,md,json}": [
"prettier --write"
]
},
"prettier": "@femm/prettier"
}