forked from BuildOnBeam/beam-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.44 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
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": "beam-docs",
"version": "0.0.1",
"description": "Beam chain & accounts API documentation",
"repository": {
"type": "git",
"url": "git+https://github.com/Merit-Circle/beam-docs.git"
},
"author": "Robby Uitbeijerse <robby@meritcircle.io>",
"license": "GNU",
"bugs": {
"url": "https://github.com/Merit-Circle/beam-docs/issues"
},
"homepage": "https://docs.onbeam.com",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:ci": "pnpm generate && pnpm build",
"postbuild": "next-sitemap",
"start": "next start",
"generate": "pnpm generate:embeddings",
"generate:embeddings": "tsx lib/generate-embeddings.ts",
"validate:format": "biome format .",
"validate:format:fix": "pnpm validate:format --write",
"validate:lint": "biome lint .",
"validate:lint:fix": "pnpm validate:lint --apply-unsafe",
"validate:ci": "biome ci ."
},
"lint-staged": {
"*": [
"biome format --write",
"biome lint --apply-unsafe"
]
},
"dependencies": {
"@supabase/supabase-js": "^2.38.0",
"@vercel/analytics": "^1.0.2",
"ai": "^2.2.14",
"common-tags": "^1.8.2",
"gpt3-tokenizer": "^1.1.5",
"next": "^14.0.3",
"nextra": "^2.13.2",
"nextra-theme-docs": "^2.13.2",
"openai": "^4.11.1",
"openai-edge": "^1.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.0",
"react-syntax-highlighter": "^15.5.0"
},
"devDependencies": {
"@biomejs/biome": "^1.3.3",
"@types/minimist": "^1.2.3",
"@types/node": "20.4.9",
"@types/uuid": "^9.0.4",
"@types/yargs": "^17.0.26",
"autoprefixer": "^10.4.14",
"dotenv": "^16.3.1",
"github-slugger": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"mdast": "^2.3.2",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-frontmatter": "^2.0.1",
"mdast-util-mdx": "^3.0.0",
"mdast-util-to-markdown": "^2.1.0",
"mdast-util-to-string": "^4.0.0",
"micromark-extension-frontmatter": "^2.0.0",
"micromark-extension-mdxjs": "^2.0.0",
"minimist": "^1.2.8",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.27",
"remark": "^15.0.1",
"tailwindcss": "^3.3.3",
"tsx": "^3.13.0",
"typescript": "^5.1.6",
"unist-builder": "^4.0.0",
"unist-util-filter": "^5.0.1",
"uuid": "^9.0.1",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"packageManager": "pnpm@8.10.2"
}