-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.55 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.55 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
94
95
96
97
98
99
100
101
102
{
"name": "scalekit-docs",
"type": "module",
"version": "2.0.0",
"scripts": {
"dev": "netlify dev:exec pnpm run start",
"start": "cross-env NETLIFY_DEV=1 astro dev",
"build": "astro build && node scripts/generate-llms-index.js && node scripts/agent-markdown-audit.js",
"agent-markdown:audit": "node scripts/agent-markdown-audit.js",
"preview": "astro preview",
"astro": "astro",
"upgrade": "pnpm dlx @astrojs/upgrade",
"install:d2": "bash scripts/install-d2.sh",
"generate-search-index": "node scripts/search-index-apis.js",
"postinstall": "node scripts/setup-git-hooks.js",
"format:check": "prettier --check '**/*.{md,mdx,js,ts,astro,css,vue}'",
"format": "prettier --write '**/*.{md,mdx,js,ts,astro,css,vue}'",
"reorder-swagger": "node scripts/reorder-swagger.js public/api/scalekit.scalar.json",
"sync-agent-connectors": "node scripts/sync-agent-connectors.js"
},
"dependencies": {
"@astrojs/mdx": "^4.3.14",
"@astrojs/netlify": "^6.6.5",
"@astrojs/react": "^5.0.3",
"@astrojs/starlight": "^0.37.7",
"@astrojs/starlight-docsearch": "file:vendor/docsearch",
"@astrojs/starlight-tailwind": "^4.0.2",
"@astrojs/vue": "^5.1.4",
"@expressive-code/plugin-collapsible-sections": "^0.41.7",
"@expressive-code/plugin-line-numbers": "^0.41.7",
"@fontsource-variable/atkinson-hyperlegible-next": "^5.2.6",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/outfit": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@hideoo/starlight-plugins-docs-components": "^0.4.2",
"@iconify/json": "^2.2.463",
"@scalar/api-reference": "^1.52.3",
"@scalar/astro": "^0.2.8",
"@tailwindcss/vite": "^4.2.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@usesapient/agent-tracker": "^0.1.1",
"accessible-astro-components": "^5.2.0",
"astro": "^5.18.1",
"astro-d2": "^0.9.0",
"astro-loader-github-releases": "^2.1.1",
"astro-og-canvas": "^0.10.1",
"canvaskit-wasm": "0.40.0",
"jose": "^6.2.2",
"pnpm": "^10.33.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"sharp": "^0.34.5",
"starlight-blog": "^0.25.3",
"starlight-image-zoom": "^0.13.2",
"starlight-links-validator": "^0.19.2",
"starlight-llms-txt": "^0.7.0",
"starlight-package-managers": "^0.12.0",
"starlight-page-actions": "^0.5.0",
"starlight-plugin-icons": "^1.1.6",
"starlight-showcases": "^0.3.2",
"starlight-sidebar-topics": "^0.6.2",
"starlight-sidebar-topics-dropdown": "^0.5.4",
"starlight-theme-nova": "^0.11.9",
"starlight-videos": "^0.3.1",
"tailwindcss": "^4.2.2",
"unplugin-icons": "^23.0.1",
"vue": "^3.5.32"
},
"devDependencies": {
"@scalar/openapi-to-markdown": "^0.4.16",
"@vitejs/plugin-vue": "^6.0.6",
"cross-env": "^10.1.0",
"dotenv": "^17.4.2",
"husky": "^9.1.7",
"netlify-cli": "^25.0.1",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"pretty-quick": "^4.2.2",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"simple-git-hooks": "^2.13.1",
"unified": "^11.0.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"sharp",
"esbuild",
"@parcel/watcher",
"netlify-cli"
],
"overrides": {
"@astrojs/starlight-docsearch": "file:./vendor/docsearch",
"glob": "^11.0.0",
"mdast-util-to-hast": "^13.2.1"
},
"patchedDependencies": {
"vite-plugin-static-copy@3.4.0": "patches/vite-plugin-static-copy@3.4.0.patch"
}
}
}