feat: new website

This commit is contained in:
Dan Finch 2026-05-13 02:03:11 +02:00
commit 003752be95
53 changed files with 2532 additions and 0 deletions

48
package.json Normal file
View file

@ -0,0 +1,48 @@
{
"name": "da.nfin.ch",
"private": true,
"type": "module",
"devDependencies": {
"@types/bun": "^1.3.13",
"@typescript/native-preview": "beta",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"hypeup": "workspace:*"
},
"license": "MIT",
"author": {
"name": "Sigitex",
"url": "http://github.com/sigitex"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sigitex/da.nfin.ch.git"
},
"scripts": {
"check": "tsgo --build",
"test": "bun test --pass-with-no-tests --tsconfig-override tsconfig.test.json",
"lint": "oxlint",
"start": "hypeup generate --dir src/routes --watch",
"build": "hypeup generate --dir src/routes",
"publish:main": "rsync -avz dist/ quickbasic.org:~/da.nfin.ch",
"publish:errilaz": "rsync -avz errilaz.org/ quickbasic.org:~/errilaz.org",
"publish": "bun run publish:main && bun run publish:errilaz"
},
"files": [
"src"
],
"workspaces": {
"packages": [
"/sig/hypeup/packages/*"
]
},
"dependencies": {
"98se.css": "/err/98se.css",
"@danielx/civet": "^0.11.7",
"@hypeup/client": "workspace:*",
"@hypeup/lexicon": "workspace:*",
"@hypeup/runtime": "workspace:*",
"marked": "^18.0.3",
"marked-gfm-heading-id": "^4.1.4"
}
}