-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 908 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 908 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
{
"name": "hipsters-builders",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"bin": {
"hipsters": "scripts/hipsters.ts"
},
"scripts": {
"dev": "astro dev",
"build": "npm run sync && npm run build-signals && astro build",
"build-signals": "tsx scripts/build-signals.ts",
"preview": "astro preview",
"sync": "tsx scripts/sync-content.ts",
"hipsters": "tsx scripts/hipsters.ts",
"astro": "astro"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.85.0",
"@astrojs/node": "^10.0.4",
"@astrojs/rss": "^4.0.17",
"@astrojs/sitemap": "^3.7.0",
"astro": "^6.0.8",
"dotenv": "^17.4.1",
"force-graph": "^1.51.2",
"gray-matter": "^4.0.3",
"resend": "^6.9.4"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.0",
"tailwindcss": "^4.1.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}