-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.28 KB
/
package.json
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
{
"name": "sambreed-dev",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build && scripts/fix-routes.sh",
"build:links": "node scripts/extract-links.mjs",
"build:embeddings": "node scripts/generate-embeddings.mjs",
"preview": "npx wrangler pages dev ./dist",
"astro": "astro",
"deploy": "npm run build && cd dist && npx wrangler pages deploy .",
"lint": "biome lint --write src",
"format": "biome format --write src"
},
"dependencies": {
"@astrojs/cloudflare": "^11.2.0",
"@astrojs/mdx": "^3.1.9",
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.2.1",
"@fontsource/bitter": "^5.1.0",
"@fontsource/inter": "^5.1.0",
"astro": "^4.16.9",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"just-kebab-case": "^4.2.0",
"openai": "^4.71.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"remark-toc": "^9.0.0",
"unified": "^11.0.5"
},
"prettier": {
"printWidth": 120
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"dotenv": "^16.4.5",
"globby": "^14.0.2",
"gray-matter": "^4.0.3"
}
}