@dclimate/zarr-map 0.1.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/README.md +374 -0
- package/dist/core/index.cjs +1603 -0
- package/dist/core/index.cjs.map +1 -0
- package/dist/core/index.d.cts +50 -0
- package/dist/core/index.d.ts +50 -0
- package/dist/core/index.js +1575 -0
- package/dist/core/index.js.map +1 -0
- package/dist/dclimate/index.cjs +1859 -0
- package/dist/dclimate/index.cjs.map +1 -0
- package/dist/dclimate/index.d.cts +80 -0
- package/dist/dclimate/index.d.ts +80 -0
- package/dist/dclimate/index.js +1856 -0
- package/dist/dclimate/index.js.map +1 -0
- package/dist/index.cjs +3071 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +3038 -0
- package/dist/index.js.map +1 -0
- package/dist/jaxray-CZWT_ZgD.d.ts +57 -0
- package/dist/jaxray-D_mmLPHk.d.cts +57 -0
- package/dist/react/index.cjs +3953 -0
- package/dist/react/index.cjs.map +1 -0
- package/dist/react/index.d.cts +71 -0
- package/dist/react/index.d.ts +71 -0
- package/dist/react/index.js +3945 -0
- package/dist/react/index.js.map +1 -0
- package/dist/renderers/index.cjs +903 -0
- package/dist/renderers/index.cjs.map +1 -0
- package/dist/renderers/index.d.cts +115 -0
- package/dist/renderers/index.d.ts +115 -0
- package/dist/renderers/index.js +899 -0
- package/dist/renderers/index.js.map +1 -0
- package/dist/types-DEZwfJNY.d.cts +210 -0
- package/dist/types-DEZwfJNY.d.ts +210 -0
- package/docs/README.md +12 -0
- package/docs/api-design.md +185 -0
- package/docs/architecture.md +246 -0
- package/docs/decision-record-renderer.md +144 -0
- package/docs/package-boundaries.md +50 -0
- package/docs/release-checklist.md +31 -0
- package/package.json +121 -0
package/package.json
ADDED
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dclimate/zarr-map",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Interactive MapLibre visualizations for dClimate-compatible Zarr and Jaxray gridded climate datasets.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/dClimate/zarr-map.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/dClimate/zarr-map/issues"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/dClimate/zarr-map#readme",
|
|
15
|
+
"sideEffects": false,
|
|
16
|
+
"keywords": [
|
|
17
|
+
"dclimate",
|
|
18
|
+
"zarr",
|
|
19
|
+
"jaxray",
|
|
20
|
+
"maplibre",
|
|
21
|
+
"climate-data",
|
|
22
|
+
"geospatial"
|
|
23
|
+
],
|
|
24
|
+
"files": [
|
|
25
|
+
"dist",
|
|
26
|
+
"docs",
|
|
27
|
+
"README.md",
|
|
28
|
+
"LICENSE"
|
|
29
|
+
],
|
|
30
|
+
"main": "./dist/index.cjs",
|
|
31
|
+
"module": "./dist/index.js",
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"exports": {
|
|
34
|
+
".": {
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"import": "./dist/index.js",
|
|
37
|
+
"require": "./dist/index.cjs"
|
|
38
|
+
},
|
|
39
|
+
"./core": {
|
|
40
|
+
"types": "./dist/core/index.d.ts",
|
|
41
|
+
"import": "./dist/core/index.js",
|
|
42
|
+
"require": "./dist/core/index.cjs"
|
|
43
|
+
},
|
|
44
|
+
"./react": {
|
|
45
|
+
"types": "./dist/react/index.d.ts",
|
|
46
|
+
"import": "./dist/react/index.js",
|
|
47
|
+
"require": "./dist/react/index.cjs"
|
|
48
|
+
},
|
|
49
|
+
"./dclimate": {
|
|
50
|
+
"types": "./dist/dclimate/index.d.ts",
|
|
51
|
+
"import": "./dist/dclimate/index.js",
|
|
52
|
+
"require": "./dist/dclimate/index.cjs"
|
|
53
|
+
},
|
|
54
|
+
"./renderer": {
|
|
55
|
+
"types": "./dist/renderers/index.d.ts",
|
|
56
|
+
"import": "./dist/renderers/index.js",
|
|
57
|
+
"require": "./dist/renderers/index.cjs"
|
|
58
|
+
},
|
|
59
|
+
"./package.json": "./package.json"
|
|
60
|
+
},
|
|
61
|
+
"scripts": {
|
|
62
|
+
"build": "tsup",
|
|
63
|
+
"format": "oxfmt",
|
|
64
|
+
"format:check": "oxfmt --check",
|
|
65
|
+
"lint": "oxlint",
|
|
66
|
+
"lint:fix": "oxlint --fix",
|
|
67
|
+
"test": "vitest run",
|
|
68
|
+
"test:watch": "vitest",
|
|
69
|
+
"typecheck": "tsc --noEmit"
|
|
70
|
+
},
|
|
71
|
+
"peerDependencies": {
|
|
72
|
+
"@carbonplan/zarr-layer": "0.5.0",
|
|
73
|
+
"@dclimate/dclimate-client-js": ">=0.5.5 <1",
|
|
74
|
+
"@dclimate/jaxray": "0.6.9",
|
|
75
|
+
"maplibre-gl": "^5.24.0",
|
|
76
|
+
"react": "^18.3.0 || ^19.0.0",
|
|
77
|
+
"react-dom": "^18.3.0 || ^19.0.0"
|
|
78
|
+
},
|
|
79
|
+
"peerDependenciesMeta": {
|
|
80
|
+
"@carbonplan/zarr-layer": {
|
|
81
|
+
"optional": true
|
|
82
|
+
},
|
|
83
|
+
"@dclimate/dclimate-client-js": {
|
|
84
|
+
"optional": true
|
|
85
|
+
},
|
|
86
|
+
"@dclimate/jaxray": {
|
|
87
|
+
"optional": true
|
|
88
|
+
},
|
|
89
|
+
"maplibre-gl": {
|
|
90
|
+
"optional": true
|
|
91
|
+
},
|
|
92
|
+
"react": {
|
|
93
|
+
"optional": true
|
|
94
|
+
},
|
|
95
|
+
"react-dom": {
|
|
96
|
+
"optional": true
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"devDependencies": {
|
|
100
|
+
"@carbonplan/zarr-layer": "0.5.0",
|
|
101
|
+
"@dclimate/dclimate-client-js": "0.5.8",
|
|
102
|
+
"@dclimate/jaxray": "0.6.9",
|
|
103
|
+
"@types/node": "^24.0.0",
|
|
104
|
+
"@types/react": "^19.2.17",
|
|
105
|
+
"@types/react-dom": "^19.2.3",
|
|
106
|
+
"@vitest/coverage-v8": "^4.1.8",
|
|
107
|
+
"jsdom": "^29.1.1",
|
|
108
|
+
"maplibre-gl": "^5.24.0",
|
|
109
|
+
"oxfmt": "0.54.0",
|
|
110
|
+
"oxlint": "1.69.0",
|
|
111
|
+
"oxlint-tsgolint": "0.23.0",
|
|
112
|
+
"react": "^19.2.7",
|
|
113
|
+
"react-dom": "^19.2.7",
|
|
114
|
+
"tsup": "^8.5.1",
|
|
115
|
+
"typescript": "^6.0.3",
|
|
116
|
+
"vitest": "^4.1.8"
|
|
117
|
+
},
|
|
118
|
+
"publishConfig": {
|
|
119
|
+
"access": "public"
|
|
120
|
+
}
|
|
121
|
+
}
|