package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "_from": "debounce",
  3. "_id": "debounce@2.0.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-xRetU6gL1VJbs85Mc4FoEGSjQxzpdxRyFhe3lmWFyy2EzydIcD4xzUvRJMD+NPDfMwKNhxa3PvsIOU32luIWeA==",
  6. "_location": "/debounce",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "tag",
  10. "registry": true,
  11. "raw": "debounce",
  12. "name": "debounce",
  13. "escapedName": "debounce",
  14. "rawSpec": "",
  15. "saveSpec": null,
  16. "fetchSpec": "latest"
  17. },
  18. "_requiredBy": [
  19. "#USER",
  20. "/"
  21. ],
  22. "_resolved": "https://registry.npmjs.org/debounce/-/debounce-2.0.0.tgz",
  23. "_shasum": "b2f914518a1481466f4edaee0b063e4d473ad549",
  24. "_spec": "debounce",
  25. "_where": "E:\\前端项目\\shengsiWx",
  26. "bugs": {
  27. "url": "https://github.com/sindresorhus/debounce/issues"
  28. },
  29. "bundleDependencies": false,
  30. "deprecated": false,
  31. "description": "Delay function calls until a set time elapses after the last invocation",
  32. "devDependencies": {
  33. "sinon": "^17.0.1",
  34. "xo": "^0.56.0"
  35. },
  36. "engines": {
  37. "node": ">=18"
  38. },
  39. "exports": {
  40. "types": "./index.d.ts",
  41. "default": "./index.js"
  42. },
  43. "files": [
  44. "index.js",
  45. "index.d.ts"
  46. ],
  47. "funding": "https://github.com/sponsors/sindresorhus",
  48. "homepage": "https://github.com/sindresorhus/debounce#readme",
  49. "keywords": [
  50. "debounce",
  51. "debouncing",
  52. "function",
  53. "throttle",
  54. "invoke",
  55. "limit",
  56. "limited",
  57. "interval",
  58. "rate",
  59. "batch",
  60. "ratelimit"
  61. ],
  62. "license": "MIT",
  63. "main": "./index.js",
  64. "name": "debounce",
  65. "repository": {
  66. "type": "git",
  67. "url": "git+https://github.com/sindresorhus/debounce.git"
  68. },
  69. "scripts": {
  70. "test": "xo && node --test"
  71. },
  72. "sideEffects": false,
  73. "types": "./index.d.ts",
  74. "version": "2.0.0",
  75. "xo": {
  76. "rules": {
  77. "unicorn/prefer-module": "off"
  78. }
  79. }
  80. }