diff options
Diffstat (limited to 'vanilla/node_modules/@vitest/runner/package.json')
| -rw-r--r-- | vanilla/node_modules/@vitest/runner/package.json | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/vanilla/node_modules/@vitest/runner/package.json b/vanilla/node_modules/@vitest/runner/package.json new file mode 100644 index 0000000..0cc2165 --- /dev/null +++ b/vanilla/node_modules/@vitest/runner/package.json @@ -0,0 +1,48 @@ +{ + "name": "@vitest/runner", + "type": "module", + "version": "4.0.18", + "description": "Vitest test runner", + "license": "MIT", + "funding": "https://opencollective.com/vitest", + "homepage": "https://github.com/vitest-dev/vitest/tree/main/packages/runner#readme", + "repository": { + "type": "git", + "url": "git+https://github.com/vitest-dev/vitest.git", + "directory": "packages/runner" + }, + "bugs": { + "url": "https://github.com/vitest-dev/vitest/issues" + }, + "sideEffects": true, + "exports": { + ".": { + "types": "./dist/index.d.ts", + "default": "./dist/index.js" + }, + "./utils": { + "types": "./dist/utils.d.ts", + "default": "./dist/utils.js" + }, + "./types": { + "types": "./dist/types.d.ts", + "default": "./dist/types.js" + }, + "./*": "./*" + }, + "main": "./dist/index.js", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "files": [ + "*.d.ts", + "dist" + ], + "dependencies": { + "pathe": "^2.0.3", + "@vitest/utils": "4.0.18" + }, + "scripts": { + "build": "premove dist && rollup -c", + "dev": "rollup -c --watch" + } +}
\ No newline at end of file |
