Files
zopu-code/repos/effect/packages/vitest/package.json

60 lines
1.4 KiB
JSON

{
"name": "@effect/vitest",
"version": "4.0.0-beta.99",
"type": "module",
"license": "MIT",
"description": "A set of helpers for testing Effects with vitest",
"homepage": "https://effect.website",
"repository": {
"type": "git",
"url": "https://github.com/Effect-TS/effect.git",
"directory": "packages/vitest"
},
"bugs": {
"url": "https://github.com/Effect-TS/effect/issues"
},
"sideEffects": [],
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts",
"./*": "./src/*.ts",
"./internal/*": null,
"./*/index": null
},
"files": [
"src/**/*.ts",
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map"
],
"publishConfig": {
"access": "public",
"provenance": true,
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js",
"./*": "./dist/*.js",
"./internal/*": null,
"./*/index": null
}
},
"scripts": {
"build": "tsc -b tsconfig.json && pnpm babel",
"babel": "babel dist --plugins annotate-pure-calls --out-dir dist --source-maps",
"check": "tsc -b tsconfig.json",
"test": "vitest",
"coverage": "vitest --coverage"
},
"peerDependencies": {
"effect": "workspace:^",
"vitest": "^3.0.0 || ^4.0.0"
},
"devDependencies": {
"@types/node": "^26.1.1",
"@vitest/runner": "4.1.10",
"effect": "workspace:^",
"vitest": "4.1.10"
}
}