chore(project): initialize cargo workspace, CI workflows, and package config

This commit is contained in:
Stevan Freeborn
2026-07-23 11:57:40 -05:00
parent 18c99e9f88
commit a6481370fa
9 changed files with 8156 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{
"name": "clean-copy",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "cd app && npm run dev",
"build": "cd app && npm run build",
"tauri": "cd app && npx tauri",
"test": "cd app && npm test",
"test:rust": "cargo test --workspace",
"lint": "cd app && npm run lint",
"lint:fix": "cd app && npm run lint:fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
}
}