package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "version": "2.2.6",
  3. "license": "MIT",
  4. "type": "module",
  5. "typings": "dist/index.d.ts",
  6. "main": "./dist/index.js",
  7. "exports": {
  8. ".": "./dist/index.js"
  9. },
  10. "files": [
  11. "dist"
  12. ],
  13. "engines": {
  14. "node": ">=16"
  15. },
  16. "scripts": {
  17. "build": "tsc",
  18. "test": "vitest run",
  19. "prepack": "npm run build"
  20. },
  21. "prettier": {
  22. "printWidth": 80,
  23. "semi": true,
  24. "singleQuote": true,
  25. "trailingComma": "es5"
  26. },
  27. "name": "superjson",
  28. "author": {
  29. "name": "Simon Knott",
  30. "email": "info@simonknott.de",
  31. "url": "https://simonknott.de"
  32. },
  33. "contributors": [
  34. {
  35. "name": "Dylan Brookes",
  36. "email": "dylan@brookes.net",
  37. "url": "https://github.com/merelinguist"
  38. },
  39. {
  40. "name": "Brandon Bayer",
  41. "email": "b@bayer.w",
  42. "url": "https://twitter.com/flybayer"
  43. }
  44. ],
  45. "repository": {
  46. "type": "git",
  47. "url": "https://github.com/blitz-js/superjson"
  48. },
  49. "devDependencies": {
  50. "@types/debug": "^4.1.5",
  51. "@types/mongodb": "^3.6.12",
  52. "@types/node": "^24.10.1",
  53. "benchmark": "^2.1.4",
  54. "decimal.js": "^10.3.1",
  55. "mongodb": "^3.6.6",
  56. "tsdx": "^0.14.1",
  57. "typescript": "^5.9.3",
  58. "vitest": "^0.34.6"
  59. },
  60. "dependencies": {
  61. "copy-anything": "^4"
  62. }
  63. }