package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@pixi/app",
  3. "version": "6.5.10",
  4. "main": "dist/cjs/app.js",
  5. "module": "dist/esm/app.mjs",
  6. "bundle": "dist/browser/app.js",
  7. "types": "index.d.ts",
  8. "exports": {
  9. ".": {
  10. "import": {
  11. "types": "./index.d.ts",
  12. "default": "./dist/esm/app.mjs"
  13. },
  14. "require": {
  15. "types": "./index.d.ts",
  16. "default": "./dist/cjs/app.js"
  17. }
  18. }
  19. },
  20. "description": "Convenience class to create a new PixiJS application",
  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. "publishConfig": {
  33. "access": "public"
  34. },
  35. "files": [
  36. "lib",
  37. "dist",
  38. "*.d.ts"
  39. ],
  40. "peerDependencies": {
  41. "@pixi/core": "6.5.10",
  42. "@pixi/display": "6.5.10",
  43. "@pixi/math": "6.5.10",
  44. "@pixi/utils": "6.5.10"
  45. },
  46. "gitHead": "8cdbf55064b7adc05f65c51e177f1c22f7329f0f"
  47. }