devtools/vitest/package.json
{
"name": "@httpx/devtools-vitest",
"description": "Shareable dev setups for vitest",
"version": "0.0.1",
"private": true,
"license": "MIT",
"author": {
"name": "Vanvelthem Sébastien",
"url": "https://github.com/belgattitude"
},
"repository": {
"type": "git",
"url": "git+https://github.com/belgattitude/httpx.git",
"directory": "tools/vitest"
},
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
"./wrangler.toml": "./wrangler.toml"
},
"scripts": {
"clean": "rimraf ./dist ./build ./coverage ./_release",
"fix-staged": "lint-staged --allow-empty",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.mjs,.cjs,.mts,.cts",
"typecheck": "tsc --project tsconfig.json --noEmit",
"install-playwright": "playwright install chromium"
},
"peerDependencies": {
"vitest": "2.1.4"
},
"dependencies": {
"@belgattitude/eslint-config-bases": "6.3.0",
"@cloudflare/vitest-pool-workers": "0.5.23",
"@codspeed/vitest-plugin": "3.1.1",
"@edge-runtime/vm": "4.0.3",
"@vitest/browser": "2.1.4",
"@vitest/coverage-istanbul": "2.1.4",
"@vitest/ui": "2.1.4",
"esbuild": "0.24.0",
"playwright": "1.48.2",
"typescript": "5.6.3",
"vite": "5.4.10",
"vite-tsconfig-paths": "5.0.1"
},
"devDependencies": {
"vitest": "2.1.4"
},
"engines": {
"node": ">=18"
}
}