-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 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
{
"name": "hopeinsource",
"workspaces": [
"src/remark-transcript-plugin"
],
"type": "module",
"private": true,
"description": "Hope in Source website",
"version": "1.0.0",
"author": "Henry Zhu <hi@henryzoo.com>",
"bugs": {
"url": "https://github.com/hzoo/hopeinsource.com/issues"
},
"homepage": "https://hopeinsource.com",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build && bun run scripts/build-search-index.ts",
"preview": "astro preview",
"astro": "astro",
"deploy": "bun run build --force && wrangler pages deploy dist --project-name hopeinsource-com"
},
"dependencies": {
"@astrojs/check": "0.9.6",
"@astrojs/preact": "4.1.3",
"astro": "^5.17.2",
"gray-matter": "^4.0.3",
"pagefind": "^1.4.0",
"preact": "^10.28.3",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.18",
"@types/bun": "^1.3.9",
"@types/mdast": "^4.0.4",
"@types/unist": "^3.0.3",
"agentation": "^2.2.1",
"sharp": "^0.34.5",
"typescript": "^5.9.3"
}
}