-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.74 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.74 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
{
"name": "genkit.dev",
"type": "module",
"version": "0.0.1",
"scripts": {
"generate-language-pages": "tsx src/scripts/generate-language-pages.ts",
"sync-firebase-docs-redirects": "tsx src/scripts/sync-firebase-docs-redirects.ts",
"dev": "tsx src/scripts/dev.ts",
"start": "tsx src/scripts/dev.ts",
"build": "pnpm generate-language-pages && pnpm build-bundle && pnpm build-llms-direct && astro build",
"build-bundle": "tsx src/gen-bundle.ts",
"build-llms-direct": "tsx src/generate-llms-direct.ts",
"preview": "astro preview",
"astro": "astro",
"format:docs": "tsx src/scripts/format-docs.ts src/content/docs/docs/*.mdx src/content/docs/docs/{deployment,frameworks,integrations,observability,plugin-authoring,tutorials}/*.mdx && prettier --write src/content/docs/docs/*.mdx src/content/docs/docs/{deployment,frameworks,integrations,observability,plugin-authoring,tutorials}/*.mdx",
"format:casing": "tsx src/scripts/sentence-case-docs.ts"
},
"dependencies": {
"@astrojs/sitemap": "^3.4.0",
"@astrojs/starlight": "^0.34.3",
"@astrojs/starlight-tailwind": "^4.0.1",
"@fontsource/ibm-plex-mono": "^5.2.5",
"@fontsource/ibm-plex-sans": "^5.2.5",
"astro": "^5.8.1",
"sharp": "^0.34.1",
"starlight-links-validator": "^0.16.0",
"yaml": "^2.8.0"
},
"packageManager": "pnpm@10.7.1+sha512.2d92c86b7928dc8284f53494fb4201f983da65f0fb4f0d40baafa5cf628fa31dae3e5968f12466f17df7e97310e30f343a648baea1b9b350685dafafffdf5808",
"devDependencies": {
"@tailwindcss/postcss": "^4.1.8",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.4",
"postcss-load-config": "^6.0.1",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"tailwindcss": "^4.1.8",
"tsx": "^4.20.3"
}
}