package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "@pixi/runner",
  3. "version": "6.5.10",
  4. "main": "dist/cjs/runner.js",
  5. "module": "dist/esm/runner.mjs",
  6. "bundle": "dist/browser/runner.js",
  7. "types": "index.d.ts",
  8. "exports": {
  9. ".": {
  10. "import": {
  11. "types": "./index.d.ts",
  12. "default": "./dist/esm/runner.mjs"
  13. },
  14. "require": {
  15. "types": "./index.d.ts",
  16. "default": "./dist/cjs/runner.js"
  17. }
  18. }
  19. },
  20. "description": "A simple alternative to events and signals with an emphasis on performance.",
  21. "author": "Mat Groves",
  22. "contributors": [
  23. "Matt Karl <matt@mattkarl.com>"
  24. ],
  25. "homepage": "http://pixijs.com/",
  26. "bugs": "https://github.com/pixijs/pixi.js/issues",
  27. "license": "MIT",
  28. "repository": {
  29. "type": "git",
  30. "url": "https://github.com/pixijs/pixi.js.git"
  31. },
  32. "keywords": [
  33. "runner",
  34. "signals",
  35. "event",
  36. "messaging",
  37. "publish",
  38. "subscribe",
  39. "observer",
  40. "pub/sub",
  41. "fast"
  42. ],
  43. "publishConfig": {
  44. "access": "public"
  45. },
  46. "scripts": {
  47. "test": "floss --path test",
  48. "benchmark": "cd benchmark && npm start"
  49. },
  50. "files": [
  51. "lib",
  52. "dist",
  53. "*.d.ts"
  54. ],
  55. "gitHead": "8cdbf55064b7adc05f65c51e177f1c22f7329f0f"
  56. }