Add template

This commit is contained in:
Alois 2026-07-29 15:28:20 +02:00
commit 5800a5ebbf
Signed by: alois
SSH key fingerprint: SHA256:GBzT2DXvAuGV9XIV5W3WrzVpjU54FThmxHXdbz95J24
27 changed files with 7866 additions and 1 deletions

20
package.json Normal file
View file

@ -0,0 +1,20 @@
{
"name": "methanium-template",
"private": true,
"type": "module",
"packageManager": "pnpm@11.17.0",
"scripts": {
"dev": "pnpm --filter @methanium/template-web dev",
"build": "pnpm --filter @methanium/template-web build",
"check": "tsc -p tsconfig.json",
"lint": "oxlint apps/web/src packages/mtp",
"fmt": "prettier --write .",
"fmt:check": "prettier --check ."
},
"devDependencies": {
"oxlint": "^1.28.0",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"@types/node": "^24.0.0"
}
}