30 lines
905 B
JSON
30 lines
905 B
JSON
{
|
|
"name": "tauri-example",
|
|
"version": "1.0.0",
|
|
"description": "A Tauri example project",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "vitest",
|
|
"test:ui": "vitest --ui",
|
|
"test:coverage": "vitest run --coverage --reporter=default",
|
|
"test:report": "vitest run --reporter=html",
|
|
"test:detailed-report": "vitest run --reporter=json --outputFile=./test-results/index.json && node generate-test-report.js",
|
|
"test:coverage-report": "vitest run --coverage && open test-results/coverage/index.html",
|
|
"test:run": "vitest run",
|
|
"dev": "vite",
|
|
"build": "vite build"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@tauri-apps/api": "^1.0.0",
|
|
"@tauri-apps/cli": "^1.0.0",
|
|
"@vitest/coverage-v8": "^0.34.0",
|
|
"@vitest/ui": "^4.0.7",
|
|
"jsdom": "^22.0.0",
|
|
"vite": "^4.0.0",
|
|
"vitest": "^0.34.0"
|
|
}
|
|
} |