cesium/packages/engine/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
1.9 KiB
JSON
Raw Permalink Normal View History

2022-11-02 03:39:57 +08:00
{
"name": "@cesium/engine",
2025-11-04 02:04:22 +08:00
"version": "22.0.0",
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",
"!Build/Unminified/**",
2022-11-02 03:39:57 +08:00
"README.md",
"LICENSE.md"
],
2022-11-15 05:52:43 +08:00
"engines": {
"node": ">=20.19.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": {
2025-06-27 02:02:04 +08:00
"@cesium/wasm-splats": "^0.1.0-alpha.2",
2025-07-31 23:01:39 +08:00
"@spz-loader/core": "0.3.0",
2024-08-30 04:20:09 +08:00
"@tweenjs/tween.js": "^25.0.0",
2025-09-09 04:12:08 +08:00
"@zip.js/zip.js": "^2.8.1",
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",
"draco3d": "^1.5.1",
"earcut": "^3.0.0",
2022-11-02 03:39:57 +08:00
"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",
2025-03-01 05:36:31 +08:00
"ktx-parse": "^1.0.0",
2022-11-02 03:39:57 +08:00
"lerc": "^2.0.0",
"mersenne-twister": "^1.1.0",
2025-09-03 00:21:06 +08:00
"meshoptimizer": "^0.25.0",
2022-11-02 03:39:57 +08:00
"pako": "^2.0.4",
"protobufjs": "^7.1.0",
2025-06-01 01:16:28 +08:00
"rbush": "^4.0.1",
2022-11-02 03:39:57 +08:00
"topojson-client": "^3.1.0",
2025-06-27 02:02:04 +08:00
"urijs": "^1.19.7"
2022-11-02 03:39:57 +08:00
},
"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"
}
}