package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "@cesium/engine",
  3. "version": "2.3.0",
  4. "description": "CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.",
  5. "keywords": [
  6. "3D",
  7. "webgl",
  8. "geospatial",
  9. "map",
  10. "globe"
  11. ],
  12. "main": "index.js",
  13. "module": "index.js",
  14. "types": "index.d.ts",
  15. "files": [
  16. "index.js",
  17. "index.d.ts",
  18. "Source",
  19. "Build/**",
  20. "!Build/Specs/**",
  21. "!Build/minifyShaders.state",
  22. "README.md",
  23. "LICENSE.md"
  24. ],
  25. "engines": {
  26. "node": ">=14.0.0"
  27. },
  28. "sideEffects": [
  29. "./Source/ThirdParty/**/*",
  30. "./Source/Widget/*.css",
  31. "./Source/Workers/*",
  32. "./Specs/**/*"
  33. ],
  34. "dependencies": {
  35. "@tweenjs/tween.js": "^18.6.4",
  36. "@zip.js/zip.js": "2.4.x",
  37. "autolinker": "^4.0.0",
  38. "bitmap-sdf": "^1.0.3",
  39. "dompurify": "^3.0.2",
  40. "earcut": "^2.2.4",
  41. "grapheme-splitter": "^1.0.4",
  42. "jsep": "^1.3.8",
  43. "kdbush": "^4.0.1",
  44. "ktx-parse": "^0.5.0",
  45. "lerc": "^2.0.0",
  46. "mersenne-twister": "^1.1.0",
  47. "meshoptimizer": "^0.18.1",
  48. "pako": "^2.0.4",
  49. "protobufjs": "^7.1.0",
  50. "rbush": "^3.0.1",
  51. "topojson-client": "^3.1.0",
  52. "urijs": "^1.19.7"
  53. },
  54. "type": "module",
  55. "scripts": {
  56. "build": "gulp build --workspace @cesium/engine",
  57. "build-ts": "gulp buildTs --workspace @cesium/engine",
  58. "coverage": "gulp coverage --workspace @cesium/engine",
  59. "test": "gulp test --workspace @cesium/engine",
  60. "postversion": "gulp postversion --workspace @cesium/engine"
  61. },
  62. "repository": {
  63. "type": "git",
  64. "url": "git+https://github.com/CesiumGS/cesium.git"
  65. },
  66. "homepage": "https://cesium.com/cesiumjs/",
  67. "license": "Apache-2.0",
  68. "author": {
  69. "name": "Cesium GS, Inc.",
  70. "url": "https://cesium.com"
  71. },
  72. "bugs": {
  73. "url": "https://github.com/CesiumGS/cesium/issues"
  74. }
  75. }