Initial commit

This commit is contained in:
Methanium 2026-07-29 17:37:23 +02:00
commit 0e4d64e6f2
27 changed files with 7867 additions and 0 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"
}
}