forked from BuildOnBeam/beam-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.71 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.71 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
88
89
90
91
92
93
{
"name": "beam-docs",
"version": "1.0.0",
"description": "Beam chain & accounts API documentation",
"repository": {
"type": "git",
"url": "git+https://github.com/BuildOnBeam/beam-docs.git"
},
"author": "Robby Uitbeijerse <robby@onbeam.com>",
"license": "GPL v.3.0",
"bugs": {
"url": "https://github.com/BuildOnBeam/beam-docs/issues"
},
"homepage": "https://docs.onbeam.com",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:ci": "pnpm generate && pnpm build",
"postinstall": "node ./scripts/nextra-css-layer.mjs",
"postbuild": "next-sitemap",
"start": "next start",
"generate": "pnpm generate:embeddings",
"generate:embeddings": "tsx lib/generate-embeddings.ts",
"test:types": "tsc --noEmit",
"validate:fix:all": "biome check . --write --unsafe",
"validate:ci": "biome ci ."
},
"lint-staged": {
"*": ["biome check . --write --unsafe"]
},
"dependencies": {
"@onbeam/biome-config": "^0.0.6",
"@onbeam/business-features": "^1.0.1",
"@onbeam/business-styled-system": "^1.5.0",
"@onbeam/business-ui": "^1.4.0",
"@onbeam/errors": "^1.0.1",
"@onbeam/features": "^1.8.57",
"@onbeam/utils": "^1.13.5",
"@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.2.10",
"nextra": "^3.2.3",
"nextra-theme-docs": "^3.2.3",
"openai": "^4.93.0",
"openai-edge": "^1.2.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^9.0.0",
"react-syntax-highlighter": "^15.5.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@pandacss/dev": "^0.39.2",
"@types/minimist": "^1.2.3",
"@types/node": "20.4.9",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@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": ">=22",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.12.1"
}