-
Notifications
You must be signed in to change notification settings - Fork 197
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.13 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
{
"name": "crowdin-docs",
"type": "module",
"version": "1.2.0",
"private": true,
"author": {
"name": "Andrii Bodnar",
"url": "https://github.com/andrii-bodnar/"
},
"scripts": {
"dev": "astro dev",
"build": "astro check && pnpm run fetch-languages && pnpm run generate-llms-api && astro build && pnpm run build:api",
"preview": "astro preview",
"astro": "astro",
"test": "vitest run",
"watch:api": "sass --watch src/style/api/",
"build:api": "sass src/style/api/:dist/src/style/api/",
"find-unused-images": "node find-unused-images.js",
"fetch-languages": "node fetch-languages.js",
"generate-llms-api": "node generate-llms-api.js"
},
"dependencies": {
"@astrojs/check": "^0.9.9",
"@astrojs/markdown-remark": "^7.2.1",
"@astrojs/sitemap": "^3.7.3",
"@astrojs/starlight": "^0.41.3",
"@astrojs/starlight-tailwind": "^5.0.0",
"@expressive-code/plugin-collapsible-sections": "^0.44.0",
"@fontsource-variable/noto-sans": "^5.2.10",
"@fontsource-variable/plus-jakarta-sans": "^5.2.8",
"@iconify-json/garden": "^1.2.6",
"@iconify-json/heroicons": "^1.2.3",
"@iconify-json/material-symbols": "^1.2.80",
"@iconify-json/mdi": "^1.2.3",
"@tailwindcss/vite": "^4.3.2",
"astro": "^7.0.6",
"astro-embed": "^0.13.1",
"astro-icon": "^1.1.5",
"astro-og-canvas": "^0.13.0",
"canvaskit-wasm": "^0.41.1",
"github-slugger": "^2.0.0",
"redoc": "2.5.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"remark-custom-heading-id": "^2.0.0",
"sharp": "^0.35.3",
"starlight-heading-badges": "^0.8.0",
"starlight-links-validator": "^0.25.2",
"starlight-llms-txt": "^0.11.0",
"starlight-sidebar-topics": "^0.8.0",
"tailwindcss": "^4.3.2",
"typescript": "^6.0.3",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^12.1.0",
"@types/mdast": "^4.0.4",
"sass": "^1.101.0",
"vfile": "^6.0.3",
"vite-plugin-static-copy": "^4.1.1",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@11.10.0"
}