17 lines
438 B
JSON
17 lines
438 B
JSON
{
|
|
"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 ."
|
|
}
|
|
}
|