forked from weatherlayers/weatherlayers-gl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.46 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.46 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "weatherlayers-gl",
"version": "2025.5.0",
"description": "WeatherLayers GL - Weather Visualization Layers for deck.gl",
"keywords": [
"deck.gl",
"weather",
"raster",
"contour",
"high-low",
"front",
"grid",
"particle"
],
"author": "WeatherLayers.com <info@weatherlayers.com>",
"license": "(MPL-2.0 OR LicenseRef-LICENSE_TERMS_OF_USE.md)",
"homepage": "https://weatherlayers.com/",
"bugs": {
"email": "support@weatherlayers.com"
},
"files": [
"LICENSE.md",
"LICENSE_TERMS_OF_USE.md",
"dist/**/*.min.cjs",
"dist/**/*.min.js",
"dist/**/*.d.ts"
],
"type": "module",
"exports": {
".": {
"types": "./dist/weatherlayers-deck.d.ts",
"script": "./dist/weatherlayers-deck.umd.min.js",
"import": "./dist/weatherlayers-deck.min.js",
"require": "./dist/weatherlayers-deck.min.cjs"
},
"./client": {
"types": "./dist/weatherlayers-client.d.ts",
"script": "./dist/weatherlayers-client.umd.min.js",
"import": "./dist/weatherlayers-client.min.js",
"require": "./dist/weatherlayers-client.min.cjs"
}
},
"main": "./dist/weatherlayers-deck.min.cjs",
"module": "./dist/weatherlayers-deck.min.js",
"browser": "./dist/weatherlayers-deck.umd.min.js",
"types": "./dist/weatherlayers-deck.d.ts",
"scripts": {
"build": "rimraf dist && NODE_OPTIONS=--max-old-space-size=8192 rollup -c",
"dev": "NODE_OPTIONS=--max-old-space-size=8192 rollup -c -w",
"test": "tsx --test src/**/*.test.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@mapbox/sphericalmercator": "^2.0.1",
"@scarf/scarf": "^1.4.0",
"comlink": "^4.4.2",
"cpt2js": "^1.5.3",
"geodesy-fn": "^1.1.0",
"geokdbush": "^2.0.1",
"icomesh": "^1.1.0",
"kdbush": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/plugin-proposal-decorators": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.27.1",
"@babel/preset-env": "^7.27.1",
"@babel/runtime": "^7.27.1",
"@deck.gl/core": "^9.1.4",
"@deck.gl/extensions": "^9.1.4",
"@deck.gl/layers": "^9.1.4",
"@luma.gl/core": "^9.1.4",
"@luma.gl/engine": "^9.1.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@types/chroma-js": "^3.1.1",
"@types/color-rgba": "^2.1.3",
"@types/geojson": "^7946.0.16",
"@types/mapbox__sphericalmercator": "^1.2.3",
"@types/node": "^22.15.3",
"autoprefixer": "^10.4.21",
"geotiff": "^2.1.3",
"postcss": "^8.5.3",
"postcss-assets": "^6.0.0",
"rimraf": "^6.0.1",
"rollup": "^4.40.1",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-license": "^3.6.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-visualizer": "^5.14.0",
"rollup-plugin-worker-factory": "^0.5.7",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"webpack-glsl-minify": "^1.5.0"
},
"peerDependencies": {
"@deck.gl/core": "^9.1.4",
"@deck.gl/extensions": "^9.1.4",
"@deck.gl/layers": "^9.1.4",
"@luma.gl/core": "^9.1.4",
"@luma.gl/engine": "^9.1.4",
"geotiff": "^2.1.3"
},
"peerDependenciesMeta": {
"geotiff": {
"optional": true
}
},
"scarfSettings": {
"allowTopLevel": true
}
}