mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
21 lines
381 B
JSON
21 lines
381 B
JSON
{
|
|
"name": "@vitest/example-test",
|
|
"type": "module",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "vitest",
|
|
"test:ui": "vitest --ui",
|
|
"test:run": "vitest run"
|
|
},
|
|
"devDependencies": {
|
|
"@vitest/ui": "latest",
|
|
"vite": "latest",
|
|
"vitest": "latest"
|
|
},
|
|
"stackblitz": {
|
|
"startCommand": "npm run test:ui"
|
|
}
|
|
}
|