-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 941 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 941 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
33
34
35
36
37
38
{
"name": "promptless-docs",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"typecheck": "astro check",
"test:smoke": "tsx --test tests/smoke/smoke.spec.ts",
"check": "npm run typecheck && npm run build"
},
"dependencies": {
"@astrojs/mdx": "^4.3.3",
"@astrojs/react": "^4.4.2",
"@astrojs/sitemap": "^3.6.0",
"@astrojs/starlight": "^0.37.6",
"@calcom/embed-react": "^1.5.3",
"@lucide/astro": "^0.575.0",
"astro": "^5.13.2",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"lucide-static": "^0.575.0",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.13.10",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=20.0"
}
}