Initial Commit

This commit is contained in:
2025-10-28 20:29:46 -04:00
commit 3a7f5fe75d
12 changed files with 1024 additions and 0 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "myoopapp",
"module": "index.ts",
"type": "module",
"author": "Alexander Zinn",
"private": true,
"scripts": {
"format": "prettier --write .",
"lint": "eslint --max-warnings 0 .",
"prelint:fix": "bun run format",
"lint:fix": "eslint --fix .",
"test": "bun test",
"test:watch": "bun test --watch"
},
"devDependencies": {
"@eslint/js": "9.38.0",
"@eslint/json": "0.13.2",
"@eslint/markdown": "7.5.0",
"@types/bun": "latest",
"eslint": "9.38.0",
"globals": "16.4.0",
"jiti": "2.6.1",
"prettier": "3.6.2",
"typescript-eslint": "8.46.2"
},
"peerDependencies": {
"typescript": "5.9.3"
}
}