From d73c040d5626f28b630b3fb5728ceaf1e9d9ecdd Mon Sep 17 00:00:00 2001 From: 10x Developer Date: Fri, 1 May 2026 23:22:57 +0200 Subject: [PATCH] Initial commit with .gitignore --- .gitignore | 82 +++++++++ index.html | 439 +++++++++++++++++++++++++++++++++++++++++++++++++ package.json | 20 +++ vite.config.js | 6 + 4 files changed, 547 insertions(+) create mode 100644 .gitignore create mode 100644 index.html create mode 100644 package.json create mode 100644 vite.config.js diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa41af3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,82 @@ +# Dependencies +node_modules/ +.pnp/ +.pnp.js + yarn-debug.log + yarn-error.log + +# Build outputs +dist/ +build/ +out/ +*.br +*.bundle +*.zip +.nuxt/ +.nuxt-dev/ + +# Testing +coverage/ +.nyc_output/ +test-results/ + +# Environment +.env +.env.local +.env.*.local +*.env*.local + +# IDE +.idea/ +.vscode/ +*.swp +*.swo +.*~ +.project +.settings/ +.classpath + +# OS +.DS_Store +Thumbs.db +*.pem +.AppleDouble +.Spotlight-V100 +.Trashes +evidence/ +.AppleDouble + +# Lock files (if you prefer to track dependencies) +package-lock.json +yarn.lock +pnpm-lock.yaml + +# TypeScript +*.tsbuildinfo + +# Logs +logs/ +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# Temporary files +.tmp/ +*.tmp +*.temp +.cache/ +npm-cache/ +yarn-cache/ +.eslintcache +.stylelintcache +.prettiercache + +# Misc +*.bak +*.backup +*.sublime-* +.sass-cache +parcel-cache.json +.pnp.* \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..540e870 --- /dev/null +++ b/index.html @@ -0,0 +1,439 @@ + + + + + + Tschaussepp - Jass Card Tracker + + + +
+
+

🎴 Tschaussepp - Jass Card Tracker

+

Setup a New Game

+
+
+ + + +
+

Card Value Configuration

+

Configure point values for each suit:

+
+
+ + + +
+ + +
+ +
+
+

🎥 Round 1

+ +
+
+
+ + +
+
+
+
+ +
+
+ +
+

🔍 Round Results

+
+
+ + +
+ +
+ +
+

📚 Game History

+
+ +
+
+ + + + + diff --git a/package.json b/package.json new file mode 100644 index 0000000..219c476 --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "tschausepp", + "version": "1.0.0", + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview" + }, + "dependencies": { + "react": "^18.3.1", + "react-dom": "^18.3.1", + "@tensorflow/tfjs": "^4.19.0" + }, + "devDependencies": { + "@types/react": "^18.3.5", + "@types/react-dom": "^18.3.0", + "@vitejs/plugin-react": "^4.3.0", + "vite": "^5.4.0" + } +} diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..9ffcc67 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,6 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' + +export default defineConfig({ + plugins: [react()], +})