@noaa-gsl/wizard-graphics 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/dist/wizard-graphics.css +2 -0
- package/dist/wizard-graphics.es.js +17386 -0
- package/dist/wizard-graphics.es.js.map +1 -0
- package/dist/wizard-graphics.umd.js +828 -0
- package/dist/wizard-graphics.umd.js.map +1 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@noaa-gsl/wizard-graphics",
|
|
3
|
+
"publishConfig": {
|
|
4
|
+
"registry": "https://registry.npmjs.org/",
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"version": "1.0.0",
|
|
8
|
+
"description": "An extension of deck.gl for producing weather graphics",
|
|
9
|
+
"type": "module",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"main": "./dist/wizard-graphics.umd.cjs",
|
|
12
|
+
"module": "./dist/wizard-graphics.es.js",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"import": "./dist/wizard-graphics.es.js",
|
|
16
|
+
"require": "./dist/wizard-graphics.umd.cjs"
|
|
17
|
+
},
|
|
18
|
+
"./wizard-graphics.css": "./dist/wizard-graphics.css"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
"homepage": "https://github.com/NOAA-GSL/wizard-graphics",
|
|
24
|
+
"scripts": {
|
|
25
|
+
"dev": "vite",
|
|
26
|
+
"build:dev": "vite build --config vite.config.dev.js",
|
|
27
|
+
"postbuild:dev": "yalc push",
|
|
28
|
+
"build": "vite build --config vite.config.prod.js",
|
|
29
|
+
"lint": "eslint .",
|
|
30
|
+
"preview": "vite preview",
|
|
31
|
+
"size": "npx vite-bundle-visualizer"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"delaunator": "^5.1.0",
|
|
35
|
+
"earcut": "^3.0.2",
|
|
36
|
+
"rbush": "^4.0.1",
|
|
37
|
+
"supercluster": "8.0.1"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@eslint/js": "^9.25.0",
|
|
41
|
+
"@types/react": "^19.1.2",
|
|
42
|
+
"@types/react-dom": "^19.1.2",
|
|
43
|
+
"@vitejs/plugin-react": "^6.0.0",
|
|
44
|
+
"eslint": "^8.56.0",
|
|
45
|
+
"eslint-config-airbnb": "^19.0.4",
|
|
46
|
+
"eslint-config-prettier": "^9.1.2",
|
|
47
|
+
"eslint-plugin-import": "^2.31.0",
|
|
48
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
49
|
+
"eslint-plugin-react": "^7.35.0",
|
|
50
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
51
|
+
"eslint-plugin-react-refresh": "^0.4.19",
|
|
52
|
+
"globals": "^16.0.0",
|
|
53
|
+
"vite": "8.0.15"
|
|
54
|
+
},
|
|
55
|
+
"//": "Still figuring out best way to manage peerDependency versions",
|
|
56
|
+
"peerDependencies": {
|
|
57
|
+
"d3": "~7.9.0",
|
|
58
|
+
"deck.gl": ">=9.2.11",
|
|
59
|
+
"lodash": "~4.18.1",
|
|
60
|
+
"maplibre-gl": ">=4.7.1",
|
|
61
|
+
"proj4": "^2.12.1",
|
|
62
|
+
"react": "^18 || ^19",
|
|
63
|
+
"react-dom": "^18 || ^19",
|
|
64
|
+
"react-map-gl": ">=7.1.7"
|
|
65
|
+
}
|
|
66
|
+
}
|