版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

44 строки
934 B

  1. {
  2. "name": "@vitest/runner",
  3. "type": "module",
  4. "version": "0.29.8",
  5. "description": "Vitest test runner",
  6. "license": "MIT",
  7. "repository": {
  8. "type": "git",
  9. "url": "git+https://github.com/vitest-dev/vitest.git",
  10. "directory": "packages/runner"
  11. },
  12. "sideEffects": true,
  13. "exports": {
  14. ".": {
  15. "types": "./dist/index.d.ts",
  16. "import": "./dist/index.js"
  17. },
  18. "./utils": {
  19. "types": "./dist/utils.d.ts",
  20. "import": "./dist/utils.js"
  21. },
  22. "./types": {
  23. "types": "./dist/types.d.ts",
  24. "import": "./dist/types.js"
  25. },
  26. "./*": "./*"
  27. },
  28. "main": "./dist/index.js",
  29. "module": "./dist/index.js",
  30. "types": "./dist/index.d.ts",
  31. "files": [
  32. "dist",
  33. "*.d.ts"
  34. ],
  35. "dependencies": {
  36. "p-limit": "^4.0.0",
  37. "pathe": "^1.1.0",
  38. "@vitest/utils": "0.29.8"
  39. },
  40. "scripts": {
  41. "build": "rimraf dist && rollup -c",
  42. "dev": "rollup -c --watch"
  43. }
  44. }