-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsdoc.json
64 lines (64 loc) · 1.36 KB
/
jsdoc.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"plugins": [
"plugins/markdown"
],
"recurseDepth": 5,
"source": {
"include": [
"src/"
]
},
"sourceType": "module",
"templates": {
"cleverLinks": true,
"monospaceLinks": true
},
"opts": {
"template": "node_modules/clean-jsdoc-theme",
"destination": "./docs/",
"tutorials": "./static/tutorials",
"recurse": true,
"verbose": true,
"readme": "README.md",
"title": "Neptune.js",
"theme_opts": {
"theme": "dark",
"title": "Neptune.js",
"homepageTitle": "Neptune.js",
"footer": "MIT License | Copyright (c) 2022 Sujal Choudhari",
"static_dir": ["./static"],
"menu": [
{
"title": "Github",
"link": "https://github.com/NotSujal/Neptune.js",
"target": "_blank"
},
{
"title": "NPM",
"link": "https://www.npmjs.com/package/@sujalchoudhari/neptune-js",
"target": "_blank"
}
],
"meta": [
{
"name": "author",
"content": "Sujal Choudhari"
},
{
"name": "description",
"content": "A 2D framework for making games completely made in JavaScript."
},
{
"name":"keywords",
"content":"2D,javascript,game,engine,framework,neptune.js,neptunejs,easy,modular,lightweight,complete,open source"
}
],
"exclude_inherited": false,
"sections":["Tutorials","Interfaces","Classes"]
}
},
"markdown": {
"hardwrap": false,
"idInHeadings": true
}
}