市场夺宝奇兵
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.1 KiB

  1. {
  2. "name": "unicorn-magic",
  3. "version": "0.3.0",
  4. "description": "Some useful utilities I often need",
  5. "license": "MIT",
  6. "repository": "sindresorhus/unicorn-magic",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "type": "module",
  14. "exports": {
  15. "node": {
  16. "types": "./node.d.ts",
  17. "import": "./node.js"
  18. },
  19. "default": {
  20. "types": "./default.d.ts",
  21. "import": "./default.js"
  22. }
  23. },
  24. "sideEffects": false,
  25. "engines": {
  26. "node": ">=18"
  27. },
  28. "scripts": {
  29. "test": "xo && ava && tsc node.d.ts"
  30. },
  31. "files": [
  32. "node.js",
  33. "node.d.ts",
  34. "default.js",
  35. "default.d.ts"
  36. ],
  37. "keywords": [
  38. "utilities",
  39. "util",
  40. "extras",
  41. "url",
  42. "path",
  43. "delay",
  44. "wait",
  45. "settimeout",
  46. "sleep",
  47. "child_process",
  48. "child",
  49. "process",
  50. "subprocess",
  51. "exec",
  52. "execfile",
  53. "execfilesync"
  54. ],
  55. "devDependencies": {
  56. "ava": "^6.1.3",
  57. "in-range": "^3.0.0",
  58. "time-span": "^5.1.0",
  59. "typescript": "^5.5.4",
  60. "xo": "^0.59.2"
  61. }
  62. }