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