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

33 строки
701 B

  1. {
  2. "name": "@vitest/spy",
  3. "type": "module",
  4. "version": "0.29.8",
  5. "description": "Lightweight Jest compatible spy implementation",
  6. "license": "MIT",
  7. "repository": {
  8. "type": "git",
  9. "url": "git+https://github.com/vitest-dev/vitest.git",
  10. "directory": "packages/spy"
  11. },
  12. "sideEffects": false,
  13. "exports": {
  14. ".": {
  15. "types": "./dist/index.d.ts",
  16. "import": "./dist/index.js"
  17. },
  18. "./*": "./*"
  19. },
  20. "main": "./dist/index.js",
  21. "module": "./dist/index.js",
  22. "types": "./dist/index.d.ts",
  23. "files": [
  24. "dist"
  25. ],
  26. "dependencies": {
  27. "tinyspy": "^1.0.2"
  28. },
  29. "scripts": {
  30. "build": "rimraf dist && rollup -c",
  31. "dev": "rollup -c --watch"
  32. }
  33. }