-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "lang-book",
"version": "0.0.0",
"description": "language features",
"homepage": "https://imafee.github.io/language",
"bugs": {
"url": "https://github.com/imafee/language/issues",
"email": "imafee@outlook.com"
},
"license": "MIT",
"author": {
"name": "imafee",
"email": "imafee@outlook.com",
"url": "https://imafee.github.io/"
},
"repository": {
"type": "git",
"url": "git@github.com:imafee/language.git"
},
"private": true,
"type": "module",
"config": {
"vitepress": {
"title": "lang-book",
"description": "A book about program language related.",
"repourl": "//github.com/imafee/language"
}
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"devDependencies": {
"http-server": "^14.0.0",
"jest": "^29.7.0",
"markdown-it-mathjax3": "^4.3.2",
"vitepress": "^1.4.1"
},
"dependencies": {
"vue": "^3.5.11"
}
}