@ibicash/geolayers-sdk 1.0.2 → 1.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/dist/index.cjs +242 -97
- package/dist/index.d.cts +77 -9
- package/dist/index.d.ts +77 -9
- package/dist/index.js +242 -97
- package/package.json +59 -58
package/package.json
CHANGED
|
@@ -1,58 +1,59 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@ibicash/geolayers-sdk",
|
|
3
|
-
"version": "1.0
|
|
4
|
-
"description": "Premium TypeScript SDK for GeoLayers Service",
|
|
5
|
-
"main": "dist/index.cjs",
|
|
6
|
-
"module": "dist/index.js",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"type": "module",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"types": "./dist/index.d.ts",
|
|
12
|
-
"import": "./dist/index.js",
|
|
13
|
-
"require": "./dist/index.cjs"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
"dist"
|
|
18
|
-
],
|
|
19
|
-
"publishConfig": {
|
|
20
|
-
"access": "public"
|
|
21
|
-
},
|
|
22
|
-
"repository": {
|
|
23
|
-
"type": "git",
|
|
24
|
-
"url": "git+https://github.com/IbiCash/ibicash-geolayers-service-sdk.git"
|
|
25
|
-
},
|
|
26
|
-
"scripts": {
|
|
27
|
-
"build": "tsup src/index.ts --format cjs,esm --dts --clean --external axios --external zod",
|
|
28
|
-
"dev": "tsup src/index.ts --format cjs,esm --watch --dts --external axios --external zod",
|
|
29
|
-
"lint": "tsc --noEmit",
|
|
30
|
-
"test": "vitest",
|
|
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
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@ibicash/geolayers-sdk",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Premium TypeScript SDK for GeoLayers Service",
|
|
5
|
+
"main": "dist/index.cjs",
|
|
6
|
+
"module": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/IbiCash/ibicash-geolayers-service-sdk.git"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsup src/index.ts --format cjs,esm --dts --clean --external axios --external zod",
|
|
28
|
+
"dev": "tsup src/index.ts --format cjs,esm --watch --dts --external axios --external zod",
|
|
29
|
+
"lint": "tsc --noEmit",
|
|
30
|
+
"test": "vitest",
|
|
31
|
+
"test:cov": "vitest run --coverage",
|
|
32
|
+
"prepublishOnly": "npm run build",
|
|
33
|
+
"release": "npm run build && npm run lint"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"geojson",
|
|
37
|
+
"gis",
|
|
38
|
+
"sdk",
|
|
39
|
+
"geospatial",
|
|
40
|
+
"weather",
|
|
41
|
+
"disasters"
|
|
42
|
+
],
|
|
43
|
+
"author": "",
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"peerDependencies": {
|
|
46
|
+
"axios": "^1.0.0",
|
|
47
|
+
"zod": "^3.0.0 || ^4.0.0"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/node": "^25.0.3",
|
|
51
|
+
"@vitest/coverage-v8": "4.0.16",
|
|
52
|
+
"axios": "^1.13.2",
|
|
53
|
+
"events": "^3.3.0",
|
|
54
|
+
"tsup": "^8.5.1",
|
|
55
|
+
"typescript": "^5.9.3",
|
|
56
|
+
"vitest": "^4.0.16",
|
|
57
|
+
"zod": "^4.3.5"
|
|
58
|
+
}
|
|
59
|
+
}
|