feat: project scaffolding

main
boksbc 2026-05-11 21:50:51 +02:00
parent 6cf9cac79b
commit 1fbe0c732a
3 changed files with 4684 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
node_modules/
dist/
*.log
.env

4659
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

21
package.json Normal file
View File

@ -0,0 +1,21 @@
{
"name": "fox-desktop",
"version": "1.0.0",
"description": "Fox — Persönlicher KI-Assistent",
"main": "electron/main.js",
"scripts": {
"start": "electron .",
"test": "jest"
},
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"electron": "^28.0.0",
"jest": "^29.0.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": ["**/__tests__/**/*.test.js"]
}
}