-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.63 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.63 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
{
"name": "useforge-ai",
"type": "module",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "astro dev",
"generate:og": "npx tsx scripts/generate-og.ts",
"register:links": "npx tsx scripts/register-links.ts",
"build": "npm run fetch && npm run register:links && npm run generate:og && astro build",
"fetch": "npm run fetch:skills && npm run fetch:contributors && npm run fetch:releases && npm run fetch:trust",
"fetch:skills": "npx tsx scripts/fetch-skills.ts",
"fetch:contributors": "npx tsx scripts/fetch-contributors.ts",
"fetch:releases": "npx tsx scripts/fetch-releases.ts",
"fetch:trust": "npx tsx scripts/fetch-trust-data.ts",
"postbuild": "npx pagefind --site dist",
"preview": "npm run build && wrangler dev",
"check": "astro check",
"astro": "astro",
"deploy": "npm run build && wrangler deploy",
"cf-typegen": "wrangler types"
},
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/cloudflare": "^12.6.12",
"@astrojs/mdx": "^4.3.13",
"@astrojs/react": "^4.4.2",
"@astrojs/rss": "^4.0.15",
"@astrojs/sitemap": "^3.7.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.1",
"astro": "^5.18.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.1"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"gray-matter": "^4.0.3",
"pagefind": "^1.4.0",
"satori": "^0.19.2",
"satori-html": "^0.3.2",
"sharp": "^0.34.5",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"wrangler": "^4.69.0"
}
}