forked from nestcn/docs.nestjs.cn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "nest-docs",
"version": "1.0.0",
"description": "> Nest是构建高效,可扩展的 Node.js Web 应用程序的框架。 它使用现代的 JavaScript 或 TypeScript(保留与纯 JavaScript 的兼容性),并结合 OOP(面向对象编程),FP(函数式编程)和FRP(函数响应式编程)的元素。Nest 基于 Express,可以方便地使用各种可用的第三方插件。",
"main": "index.js",
"scripts": {
"start": "docsify start ./ --config ssr.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nestcn/docs.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nestcn/docs/issues"
},
"homepage": "https://github.com/nestcn/docs#readme",
"files": [
"./"
],
"docsify": {
"template": "./ssr.html",
"config": {
"basePath": "https://docs.nestjs.cn/",
"loadSidebar": true,
"loadNavbar": true,
"coverpage": true,
"name": "nest.js 中文文档"
}
},
"devDependencies": {
"docsify-cli": "4.4.4"
}
}