Scaffold project structure

Setup vcs, editor, language, and package configs for a basic site
generator using TSX to build an html website.
This commit is contained in:
Hornwitser 2025-01-21 07:56:15 +01:00
commit 51b458103b
9 changed files with 121 additions and 0 deletions

19
package.json Normal file
View file

@ -0,0 +1,19 @@
{
"name": "website",
"private": true,
"packageManager": "pnpm@8.6.12",
"type": "module",
"main": "build/node/index.js",
"scripts": {
"prepare": "tsc",
"build": "node cli.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"antihtml": "^0.3.0"
},
"devDependencies": {
"@types/node": "^22.10.7",
"typescript": "^5.7.3"
}
}