-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.98 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.98 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "ol-mapbox-style",
"version": "13.4.1",
"description": "Create OpenLayers layers or maps from Mapbox/MapLibre styles",
"type": "module",
"funding": "https://github.com/sponsors/ahocevar",
"browser": "src/index.js",
"main": "dist/olms.js",
"module": "src/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./src/index.js",
"require": "./dist/olms.js",
"types": "./dist/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/openlayers/ol-mapbox-style.git"
},
"bugs": {
"url": "https://github.com/openlayers/ol-mapbox-style/issues"
},
"homepage": "https://openlayers.org/ol-mapbox-style/",
"keywords": [
"openlayers",
"mapbox",
"maplibre",
"vector tiles"
],
"license": "BSD-2-Clause",
"scripts": {
"start": "webpack serve --config ./webpack.config.examples.cjs",
"prepare": "npm run doc && npm run build",
"build": "tsc --project tsconfig-build.json && rollup -c && webpack-cli --mode=production --config ./webpack.config.examples.cjs",
"doc": "typedoc --plugin typedoc-plugin-missing-exports src/index.js --excludeExternals --tsconfig tsconfig-typecheck.json --out ./_site",
"karma": "karma start test/karma.conf.cjs",
"lint": "eslint test examples src",
"typecheck": "tsc --project tsconfig-typecheck.json",
"pretest": "npm run lint && npm run typecheck",
"test": "npm run karma -- --single-run --log-level error"
},
"dependencies": {
"@maplibre/maplibre-gl-style-spec": "^24.4.1",
"mapbox-to-css-font": "^3.2.0"
},
"peerDependencies": {
"ol": "*"
},
"devDependencies": {
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@openlayers/eslint-plugin": "^4.0.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^1.0.0",
"@types/arcgis-rest-api": "^10.4.4",
"@types/mocha": "^10.0.0",
"@types/offscreencanvas": "^2019.6.4",
"@types/topojson-specification": "^1.0.1",
"copy-webpack-plugin": "^14.0.0",
"cross-env": "^10.1.0",
"css-loader": "^7.0.0",
"deep-freeze": "0.0.1",
"eslint": "^10.1.0",
"eslint-config-openlayers": "^21.0.0",
"globals": "^17.3.0",
"html-webpack-plugin": "^5.6.6",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-mocha": "^2.0.1",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.0",
"mapbox-gl-styles": "^2.0.2",
"mini-css-extract-plugin": "^2.10.0",
"mocha": "^12.0.0-beta-9.2",
"nanoassert": "^3.0.1",
"pmtiles-protocol": "^1.0.5",
"proj4": "^2.15.0",
"puppeteer": "^24.36.0",
"rollup": "^4.57.1",
"should": "^13.2.3",
"sinon": "^21.0.0",
"style-loader": "^4.0.0",
"typedoc": "^0.28.3",
"typedoc-plugin-missing-exports": "^4.0.0",
"typescript": "^6.0.2",
"webpack": "^5.105.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
}
}