package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@pixi/polyfill",
  3. "version": "6.5.10",
  4. "main": "dist/cjs/polyfill.js",
  5. "module": "dist/esm/polyfill.mjs",
  6. "bundle": "dist/browser/polyfill.js",
  7. "types": "index.d.ts",
  8. "exports": {
  9. ".": {
  10. "import": {
  11. "types": "./index.d.ts",
  12. "default": "./dist/esm/polyfill.mjs"
  13. },
  14. "require": {
  15. "types": "./index.d.ts",
  16. "default": "./dist/cjs/polyfill.js"
  17. }
  18. }
  19. },
  20. "standalone": true,
  21. "description": "Support for legacy browser JavaScript environments",
  22. "author": "Mat Groves",
  23. "contributors": [
  24. "Matt Karl <matt@mattkarl.com>"
  25. ],
  26. "homepage": "http://pixijs.com/",
  27. "bugs": "https://github.com/pixijs/pixi.js/issues",
  28. "license": "MIT",
  29. "repository": {
  30. "type": "git",
  31. "url": "https://github.com/pixijs/pixi.js.git"
  32. },
  33. "publishConfig": {
  34. "access": "public"
  35. },
  36. "files": [
  37. "lib",
  38. "dist",
  39. "*.d.ts"
  40. ],
  41. "dependencies": {
  42. "object-assign": "^4.1.1",
  43. "promise-polyfill": "^8.2.0"
  44. },
  45. "devDependencies": {
  46. "@types/object-assign": "^4.0.30",
  47. "@types/promise-polyfill": "^6.0.3"
  48. },
  49. "gitHead": "8cdbf55064b7adc05f65c51e177f1c22f7329f0f"
  50. }