cesium/packages/engine/package.json

76 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2022-11-02 03:39:57 +08:00
{
"name": "@cesium/engine",
2023-08-02 01:38:51 +08:00
"version": "3.0.2",
2022-11-02 03:39:57 +08:00
"description": "CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.",
"keywords": [
"3D",
"webgl",
"geospatial",
"map",
"globe"
],
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"Source",
"Build/**",
"!Build/Specs/**",
"!Build/minifyShaders.state",
"README.md",
"LICENSE.md"
],
2022-11-15 05:52:43 +08:00
"engines": {
2022-11-15 23:20:24 +08:00
"node": ">=14.0.0"
2022-11-15 05:52:43 +08:00
},
2022-11-02 03:39:57 +08:00
"sideEffects": [
"./Source/ThirdParty/**/*",
"./Source/Widget/*.css",
"./Source/Workers/*",
"./Specs/**/*"
],
"dependencies": {
"@tweenjs/tween.js": "^21.0.0",
2022-11-02 03:39:57 +08:00
"@zip.js/zip.js": "2.4.x",
2022-12-16 02:54:24 +08:00
"autolinker": "^4.0.0",
2022-11-02 03:39:57 +08:00
"bitmap-sdf": "^1.0.3",
2023-04-25 03:55:20 +08:00
"dompurify": "^3.0.2",
2022-11-02 03:39:57 +08:00
"earcut": "^2.2.4",
"grapheme-splitter": "^1.0.4",
2022-12-16 02:54:24 +08:00
"jsep": "^1.3.8",
2023-04-25 03:55:20 +08:00
"kdbush": "^4.0.1",
2023-07-25 01:14:44 +08:00
"ktx-parse": "^0.6.0",
2022-11-02 03:39:57 +08:00
"lerc": "^2.0.0",
"mersenne-twister": "^1.1.0",
"meshoptimizer": "^0.19.0",
2022-11-02 03:39:57 +08:00
"pako": "^2.0.4",
"protobufjs": "^7.1.0",
"rbush": "^3.0.1",
"topojson-client": "^3.1.0",
"urijs": "^1.19.7"
},
"type": "module",
"scripts": {
"build": "gulp build --workspace @cesium/engine",
"build-ts": "gulp buildTs --workspace @cesium/engine",
"coverage": "gulp coverage --workspace @cesium/engine",
"test": "gulp test --workspace @cesium/engine",
"postversion": "gulp postversion --workspace @cesium/engine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CesiumGS/cesium.git"
},
"homepage": "https://cesium.com/cesiumjs/",
"license": "Apache-2.0",
"author": {
"name": "Cesium GS, Inc.",
"url": "https://cesium.com"
},
"bugs": {
"url": "https://github.com/CesiumGS/cesium/issues"
}
}