nicholai-work-2026/package.json
Nicholai 0da3c3c22b Add notepad utility and update blog notes
- Add `notepad` script to package.json for timestamped note handling
- Create `src/utils/notepad.js` to append notes, commit, push, and deploy
- Update `nicholais-notepad.mdx` description and remove placeholder entries
2025-12-18 14:30:12 -07:00

40 lines
1.1 KiB
JSON

{
"name": "nicholai-work-2026",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro build && wrangler pages dev",
"astro": "astro",
"deploy": "astro build && wrangler pages deploy",
"cf-typegen": "wrangler types",
"convert:avif": "node src/utils/convert-to-avif.js",
"convert:avif:all": "node src/utils/convert-to-avif.js --all",
"convert:avif:jpeg": "node src/utils/convert-to-avif.js --jpeg",
"convert:avif:png": "node src/utils/convert-to-avif.js --png",
"commit": "node src/utils/git-commit.js",
"notepad": "node src/utils/notepad.js"
},
"dependencies": {
"@astrojs/cloudflare": "^12.6.12",
"@astrojs/mdx": "^4.3.12",
"@astrojs/react": "^4.4.2",
"@astrojs/rss": "^4.0.14",
"@astrojs/sitemap": "^3.6.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.17",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"astro": "^5.16.4",
"marked": "^17.0.1",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"sharp": "^0.34.3",
"tailwindcss": "^4.1.17"
},
"devDependencies": {
"@types/node": "^24.10.1",
"wrangler": "^4.53.0"
}
}