mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-27 12:14:45 +01:00
49 lines
No EOL
1.1 KiB
JSON
49 lines
No EOL
1.1 KiB
JSON
{
|
|
"name": "@vitest/runner",
|
|
"type": "module",
|
|
"version": "0.33.0",
|
|
"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",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./utils": {
|
|
"types": "./dist/utils.d.ts",
|
|
"import": "./dist/utils.js"
|
|
},
|
|
"./types": {
|
|
"types": "./dist/types.d.ts",
|
|
"import": "./dist/types.js"
|
|
},
|
|
"./*": "./*"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"*.d.ts"
|
|
],
|
|
"dependencies": {
|
|
"p-limit": "^4.0.0",
|
|
"pathe": "^1.1.1",
|
|
"@vitest/utils": "0.33.0"
|
|
},
|
|
"scripts": {
|
|
"build": "rimraf dist && rollup -c",
|
|
"dev": "rollup -c --watch"
|
|
}
|
|
} |