package.json 574 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "tinybench",
  3. "version": "2.6.0",
  4. "type": "module",
  5. "packageManager": "pnpm@8.4.0",
  6. "main": "./dist/index.cjs",
  7. "module": "./dist/index.js",
  8. "types": "./dist/index.d.ts",
  9. "exports": {
  10. "types": "./dist/index.d.ts",
  11. "import": "./dist/index.js",
  12. "require": "./dist/index.cjs",
  13. "default": "./dist/index.cjs"
  14. },
  15. "files": [
  16. "dist/**"
  17. ],
  18. "repository": "tinylibs/tinybench",
  19. "license": "MIT",
  20. "keywords": [
  21. "benchmark",
  22. "tinylibs",
  23. "tiny"
  24. ],
  25. "scripts": {
  26. "publish": "npm run build && clean-publish"
  27. }
  28. }