-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.33 KB
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
{
"private": true,
"name": "colyseus-docs",
"version": "0.0.1",
"description": "Colyseus Documentation",
"type": "module",
"scripts": {
"prepare": "git config core.hooksPath .githooks || true",
"dev": "next dev",
"build": "node scripts/generate-ai-nav.js && next build && node scripts/emit-markdown.js",
"start": "next start",
"generate:ai-nav": "node scripts/generate-ai-nav.js",
"emit-markdown": "node scripts/emit-markdown.js",
"check:ai-nav": "node scripts/generate-ai-nav.js --check",
"check-links": "node scripts/check-links.js",
"lint:prose": "node scripts/lint-prose.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/colyseus/docs.git"
},
"author": "Endel Dreyer",
"license": "MIT",
"bugs": {
"url": "https://github.com/colyseus/docs/issues"
},
"homepage": "https://github.com/colyseus/docs#readme",
"dependencies": {
"@primer/octicons-react": "19.13.0",
"next": "^13.0.6",
"nextjs-google-analytics": "^2.3.7",
"nextra": "^3.3.1",
"nextra-theme-docs": "^3.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"supports-color": "^9.4.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/react": "19.0.1",
"github-slugger": "^2.0.0",
"typescript": "^5.7.2"
},
"packageManager": "pnpm@10.10.0"
}