-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 813 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 813 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
{
"name": "digital-garden",
"private": true,
"dependencies": {
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/postcss": "^4.0.8",
"@tailwindcss/typography": "^0.5.16",
"gray-matter": "^4.0.3",
"postcss": "^8.5.3",
"postcss-cli": "^11.0.0",
"postcss-nesting": "^13.0.1",
"satori": "^0.12.0",
"tailwindcss": "^4.0.8"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.5.4"
},
"scripts": {
"build:css": "postcss _assets/stylesheets/application.css -o ./assets/stylesheets/application.css",
"test:js": "node --test tests/post-toc.test.mjs",
"generate:og": "bun run scripts/generate-og-image.ts",
"generate:og:all": "for post in _posts/*.md; do bun run scripts/generate-og-image.ts \"$post\"; done"
}
}