-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.08 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
{
"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.9",
"@astrojs/preact": "^5.1.2",
"astro": "^6.1.10",
"gray-matter": "^4.0.3",
"pagefind": "^1.5.2",
"preact": "^10.29.1",
"tailwindcss": "^4.2.4"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.4",
"@types/bun": "^1.3.13",
"@types/mdast": "^4.0.4",
"@types/unist": "^3.0.3",
"sharp": "^0.34.5",
"typescript": "^6.0.3"
}
}