This commit is contained in:
2026-02-12 23:54:49 +01:00
commit 724500ae0b
16 changed files with 575 additions and 0 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "my-website",
"type": "module",
"scripts": {
"start": "node --watch server.ts",
"generate": "node node_modules/@mastrojs/mastro/src/generator.js",
"check": "tsc"
},
"dependencies": {
"@mastrojs/mastro": "npm:@jsr/mastrojs__mastro@^0",
"@remix-run/node-fetch-server": "^0.11",
"@mastrojs/markdown": "npm:@jsr/mastrojs__markdown@^0"
},
"devDependencies": {
"@types/node": "^24",
"typescript": "^5"
},
"engines": {
"node": ">=24.12"
},
"volta": {
"node": "24.12.0"
}
}