-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.26 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@markline/markline",
"version": "0.1.5",
"description": "Open-source, self-hostable documentation framework with first-class OpenAPI, search, and an interactive API playground.",
"license": "MIT",
"keywords": [
"documentation",
"docs",
"openapi",
"api-reference",
"mdx",
"nextjs",
"static-site"
],
"homepage": "https://github.com/markline-dev/markline",
"repository": {
"type": "git",
"url": "https://github.com/markline-dev/markline.git"
},
"bugs": {
"url": "https://github.com/markline-dev/markline/issues"
},
"publishConfig": {
"access": "public"
},
"bin": {
"markline": "bin/markline.mjs"
},
"files": [
"app",
"components",
"lib",
"scripts",
"templates/init",
"templates/ai-worker/README.md",
"templates/ai-worker/package.json",
"templates/ai-worker/wrangler.toml",
"templates/ai-worker/tsconfig.json",
"templates/ai-worker/src",
"templates/feedback-worker/README.md",
"templates/feedback-worker/package.json",
"templates/feedback-worker/wrangler.toml.example",
"templates/feedback-worker/tsconfig.json",
"templates/feedback-worker/schema.sql",
"templates/feedback-worker/src",
"bin",
"next.config.mjs",
"postcss.config.mjs",
"tsconfig.json"
],
"scripts": {
"dev": "next dev",
"search": "node scripts/build-search.mjs",
"build": "node scripts/build-search.mjs && next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "node --test test/*.test.ts"
},
"dependencies": {
"@mdx-js/loader": "3.1.0",
"@mdx-js/react": "3.1.0",
"@next/mdx": "15.0.3",
"@phosphor-icons/react": "^2.1.10",
"@types/mdx": "2.0.13",
"@types/node": "22.9.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "10.4.20",
"clsx": "2.1.1",
"gray-matter": "4.0.3",
"next": "^15.3.0",
"next-mdx-remote": "^6.0.0",
"pagefind": "^1.5.2",
"postcss": "8.4.49",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rehype-pretty-code": "0.14.0",
"remark-gfm": "4.0.0",
"shiki": "1.22.2",
"typescript": "5.6.3"
},
"devDependencies": {
"eslint": "9.14.0",
"eslint-config-next": "15.0.3"
}
}