diff --git a/.gitignore b/.gitignore index f06235c..46d918d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,9 @@ node_modules dist +/.idea +src-tauri/Cargo.toml +src-tauri/gen/schemas/desktop-schema.json +src-tauri/gen/schemas/windows-schema.json +yarn.lock +src-tauri/gen/schemas/desktop-schema.json +src-tauri/Cargo.toml diff --git a/package.json b/package.json index 9ddbadf..0008d9d 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { "name": "nextauri", "scripts": { - "dev": "tauri dev", - "tauri": "tauri", + "dev": "npx tauri dev", + "tauri": "npx tauri", "lint": "next lint src-next", - "next": "next src-next", + "next": "npx next src-next", "clippy": "cargo clippy --manifest-path ./src-tauri/Cargo.toml", "next-build": "next build src-next" }, @@ -25,11 +25,11 @@ }, "devDependencies": { "@tauri-apps/cli": "^2.2.7", - "@types/node": "^22.13.4", - "@types/react": "^19.0.9", + "@types/node": "22.13.5", + "@types/react": "19.0.10", "@types/react-dom": "^19.0.3", "eslint": "^9.20.1", "eslint-config-next": "^15.1.7", - "typescript": "^5.7.3" + "typescript": "5.7.3" } }