-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.22 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
{
"name": "memo-dev",
"version": "3.0.0",
"description": "knowledge db tool",
"author": "marlou <pro@marc-loupias.fr>",
"contributors": [
{
"name": "Marc Loupias",
"email": "pro@marc-loupias.fr",
"url": "https://github.com/MarcLoupias"
}
],
"repository": {
"type": "git",
"url": "https://github.com/MarcLoupias/memo-dev"
},
"bugs": {
"url": "https://github.com/MarcLoupias/memo-dev/issues"
},
"homepage": "http://memo-dev.marc-loupias.fr",
"engines": {
"node": ">=16.20.1",
"npm": ">=8.19.4"
},
"scripts": {
"test": "markdownlint 'content/**/*.md' --ignore content/data/files-formats/markdown-from-gitlab.md",
"dev": "vuepress dev content",
"build": "export NODE_OPTIONS=--openssl-legacy-provider && vuepress build content && echo memo-dev.marc-loupias.fr > docs/CNAME",
"build::serve": "http-server -c-1 docs/",
"prepare": "husky install"
},
"license": "ISC",
"devDependencies": {
"http-server": "^14.1.1",
"husky": "^8.0.3",
"markdownlint-cli": "^0.35.0",
"rimraf": "^5.0.1",
"vuepress": "^0.14.11"
}
}