-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 861 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 861 Bytes
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
{
"name": "rtk-landing",
"type": "module",
"version": "0.1.0",
"scripts": {
"dev": "astro dev",
"dev:full": "node scripts/prepare-docs.mjs && node scripts/build-search-index.mjs && astro dev",
"build:guide": "node scripts/prepare-docs.mjs",
"build:search": "node scripts/build-search-index.mjs",
"build": "node scripts/prepare-docs.mjs && node scripts/build-search-index.mjs && astro build",
"preview": "astro preview",
"check": "astro check",
"astro": "astro"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
},
"dependencies": {
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@astrojs/starlight": "^0.37.6",
"astro": "^5.17.1",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
}
}