-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1000 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1000 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
30
31
32
33
34
35
36
{
"name": "@carplay/docs",
"version": "0.0.1",
"description": "Nextra docs template",
"scripts": {
"dev": "next dev",
"export": "next export",
"build": "yarn build:typedoc && next build",
"start": "next start",
"build:typedoc": "./scripts/prepare.sh && typedoc && ./scripts/cleanup.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shuding/nextra-docs-template.git"
},
"author": "Shu Ding <g@shud.in>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shuding/nextra-docs-template/issues"
},
"homepage": "https://github.com/shuding/nextra-docs-template#readme",
"dependencies": {
"next": "^14.2.15",
"nextra": "latest",
"nextra-theme-docs": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "18.11.10",
"typedoc": "^0.25.3",
"typedoc-github-wiki-theme": "^1.1.0",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^4.9.3"
}
}