cong-gis-viewer
Version:
The minimal recommended setup for an app using Cesium with Webpack 5
48 lines (47 loc) • 1.25 kB
JSON
{
"name": "cong-gis-viewer",
"version": "1.0.14",
"description": "The minimal recommended setup for an app using Cesium with Webpack 5",
"module": "dist/cong-gis-viewer.esm.min.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"homepage": "https://cesium.com/platform/cesiumjs/",
"license": "Apache-2.0",
"author": {
"name": "Cesium GS, Inc.",
"url": "https://cesium.com"
},
"keywords": [
"cesium",
"CesiumJS",
"webpack",
"example"
],
"repository": {
"type": "git",
"url": "https://github.com/CesiumGS/cesium-webpack-example.git"
},
"main": "index.ts",
"scripts": {
"build": "webpack --config webpack.config.js --mode=production --node-env=production",
"start": "webpack serve --config webpack.config.js",
"start:built": "npx http-server -a localhost -p 8080 dist/"
},
"dependencies": {
"cesium": "^1.114.0"
},
"devDependencies": {
"@types/node": "^22.8.6",
"copy-webpack-plugin": "^9.1.0",
"css-loader": "^6.8.1",
"html-webpack-plugin": "^5.6.0",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.89.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.1"
}
}