| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- {
- "name": "dc-sdk",
- "version": "2.16.2",
- "description": "The SDK is based on Cesium for secondary development of 2, 3D all-in-one WebGis application framework, the framework optimizes the use of Cesium and add some additional features, designed for developers to quickly build WebGis applications.",
- "repository": "https://github.com/dvgis/dc-sdk.git",
- "homepage": "https://www.dvgis.cn",
- "keywords": [
- "3D",
- "webGL",
- "map",
- "globe",
- "cesium",
- "heatmap",
- "turf",
- "mapv",
- "s3m"
- ],
- "author": "Caven Chen <cavencj@gmail.com>",
- "license": "Apache 2.0",
- "main": "index.js",
- "scripts": {
- "test": "echo \"Error: no test specified\" && exit 1",
- "gen:version": "node scripts/gen-version.js",
- "copy": "node scripts/build.js",
- "dev": "yarn run dev:base && yarn run dev:core && yarn run dev:chart && yarn run dev:mapv && yarn run dev:s3m",
- "build": "yarn run build:base && yarn run build:core && yarn run build:chart && yarn run build:mapv && yarn run build:s3m",
- "dev:sdk": "yarn run dev && yarn run copy",
- "build:sdk": "yarn run build && yarn run copy",
- "release": "node scripts/release.js",
- "dev:base": "yarn run clean:base && webpack --config build/webpack.base.conf --mode development",
- "build:base": "yarn run clean:base && webpack --config build/webpack.base.conf --mode production --env.production",
- "dev:core": "yarn run clean:core && webpack --config build/webpack.core.conf --mode development",
- "build:core": "yarn run clean:core && webpack --config build/webpack.core.conf --mode production --env.production",
- "dev:chart": "yarn run clean:chart && webpack --config build/webpack.chart.conf --mode development",
- "build:chart": "yarn run clean:chart && webpack --config build/webpack.chart.conf --mode production --env.production",
- "dev:mapv": "yarn run clean:mapv && webpack --config build/webpack.mapv.conf --mode development",
- "build:mapv": "yarn run clean:mapv && webpack --config build/webpack.mapv.conf --mode production --env.production",
- "dev:s3m": "yarn run clean:s3m && webpack --config build/webpack.s3m.conf --mode development",
- "build:s3m": "yarn run clean:s3m && webpack --config build/webpack.s3m.conf --mode production --env.production",
- "clean": "yarn run clean:base && yarn run clean:core && yarn run clean:chart && yarn run clean:mapv && yarn run clean:s3m && yarn run clean:sdk",
- "clean:base": "rimraf packages/base/dist",
- "clean:core": "rimraf packages/core/dist",
- "clean:chart": "rimraf packages/chart/dist",
- "clean:mapv": "rimraf packages/mapv/dist",
- "clean:s3m": "rimraf packages/s3m/dist",
- "clean:sdk": "rimraf packages/sdk/dist"
- },
- "devDependencies": {
- "@babel/core": "^7.4.0",
- "@babel/plugin-proposal-class-properties": "^7.12.1",
- "@babel/plugin-transform-runtime": "^7.4.0",
- "@babel/polyfill": "^7.4.0",
- "@babel/preset-env": "^7.4.2",
- "@turf/turf": "^6.3.0",
- "babel-eslint": "^10.0.1",
- "babel-loader": "^8.0.5",
- "cesium": "^1.98.1",
- "chalk": "^4.1.0",
- "copy-webpack-plugin": "^5.0.2",
- "css-loader": "^2.1.1",
- "eslint": "^5.15.3",
- "eslint-config-prettier": "^4.1.0",
- "eslint-plugin-import": "^2.1.0",
- "eslint-plugin-node": "^8.0.1",
- "eslint-plugin-prettier": "^3.0.1",
- "eslint-plugin-promise": "^4.0.1",
- "file-loader": "^3.0.1",
- "fs-extra": "^9.1.0",
- "mini-css-extract-plugin": "^0.6.0",
- "optimize-css-assets-webpack-plugin": "^5.0.3",
- "prettier": "^1.16.4",
- "rimraf": "^2.6.3",
- "sass": "^1.49.9",
- "sass-loader": "^10.1.0",
- "shelljs": "^0.8.4",
- "strip-pragma-loader": "^1.0.0",
- "style-loader": "^0.23.1",
- "url-loader": "^1.1.2",
- "webpack": "^4.29.6",
- "webpack-cli": "^3.3.0",
- "webpack-glsl-loader": "^1.0.1",
- "webpack-obfuscator": "^1.8.0"
- }
- }
|