vitest/packages/expect/package.json
nopeless 80cd129f3e
chore(deps): bump @types/chai to 5.0.1 (#7123)
Co-authored-by: Hiroshi Ogawa <hi.ogawa.zz@gmail.com>
2025-03-01 12:56:42 +09:00

48 lines
1.1 KiB
JSON

{
"name": "@vitest/expect",
"type": "module",
"version": "3.0.7",
"description": "Jest's expect matchers as a Chai plugin",
"license": "MIT",
"funding": "https://opencollective.com/vitest",
"homepage": "https://github.com/vitest-dev/vitest/tree/main/packages/expect#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vitest-dev/vitest.git",
"directory": "packages/expect"
},
"bugs": {
"url": "https://github.com/vitest-dev/vitest/issues"
},
"sideEffects": false,
"exports": {
".": {
"types": "./index.d.ts",
"default": "./dist/index.js"
},
"./*": "./*"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./index.d.ts",
"files": [
"*.d.ts",
"dist"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -c --watch"
},
"dependencies": {
"@vitest/spy": "workspace:*",
"@vitest/utils": "workspace:*",
"chai": "^5.2.0",
"tinyrainbow": "^2.0.0"
},
"devDependencies": {
"@types/chai": "5.0.1",
"@vitest/runner": "workspace:*",
"rollup-plugin-copy": "^3.5.0"
}
}