forked from openlayers/ol-cesium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "ol-cesium",
"version": "2.16.0",
"description": "OpenLayers Cesium integration library",
"scripts": {
"build-examples": "cross-env NODE_ENV=production TARGET=examples webpack --progress --bail",
"build-library": "cross-env NODE_ENV=production TARGET=library webpack --progress --bail",
"build-library-debug": "cross-env NODE_ENV=development TARGET=library webpack --progress --bail",
"build-umd": "cross-env NODE_ENV=production TARGET=umd webpack --progress --bail",
"start": "cross-env DEV_SERVER=1 NODE_ENV=development TARGET=examples webpack serve --port 3000 --progress --bail --static-directory .",
"typecheck": "tsc --pretty",
"doc": "typedoc --name ol-cesium --excludeExternals --out dist/apidoc --entryPoints src/index.library.js --tsconfig ./tsconfig.json"
},
"main": "./dist/olcesium.js",
"module": "./dist/olcesium.umd.js",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/openlayers/ol-cesium.git"
},
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/openlayers/ol-cesium/issues"
},
"peerDependencies": {
"cesium": ">= 1.62.0",
"ol": ">= 6.0.1 || 7 || 8"
},
"devDependencies": {
"@babel/core": "7.22.11",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-typescript": "7.22.11",
"@babel/preset-env": "7.22.14",
"@babel/preset-typescript": "7.22.11",
"@mapbox/geojsonhint": "3.2.0",
"@types/webpack": "5.28.2",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"babel-loader": "9.1.3",
"cesium": "1.109.0",
"copy-webpack-plugin": "11.0.0",
"cross-env": "7.0.3",
"eslint": "8.48.0",
"eslint-config-openlayers": "12.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-import-resolver-webpack": "0.13.7",
"eslint-plugin-import": "^2.28.0",
"html-loader": "4.2.0",
"html-webpack-plugin": "5.5.3",
"htmlparser2": "9.0.0",
"jsdoc": "4.0.2",
"ol": "8.0.0",
"proj4": "2.9.0",
"typedoc": "0.25.0",
"typescript": "5.2.2",
"webpack": "5.88.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1",
"webpack-merge": "5.9.0"
}
}