-
Notifications
You must be signed in to change notification settings - Fork 284
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 759 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 759 Bytes
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
{
"name": "js-data-structure-and-algorithm",
"version": "0.0.1",
"description": "JavaScript 数据结构与算法",
"author": "XPoet <i@xpoet.cn>",
"main": "index.js",
"scripts": {
"dev": "vitepress dev src --open",
"preview": "vitepress preview src",
"build": "vitepress build src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XPoet/js-data-structure-and-algorithm.git"
},
"keywords": [
"javascript",
"data-structure",
"algorithm"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/XPoet/js-data-structure-and-algorithm/issues"
},
"homepage": "https://github.com/XPoet/js-data-structure-and-algorithm#readme",
"devDependencies": {
"vitepress": "^1.2.2"
}
}