-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 997 Bytes
/
package.json
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
{
"name": "@map.ir/services-sdk",
"version": "0.1.4",
"description": "JavaScript/TypeScript SDK for map.ir services",
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/mapir_services_sdk.cjs",
"types": "./dist/mapir_services_sdk.modern.d.ts",
"default": "./dist/mapir_services_sdk.modern.js"
},
"main": "./dist/mapir_services_sdk.cjs",
"module": "./dist/mapir_services_sdk.module.js",
"unpkg": "./dist/mapir_services_sdk.umd.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"dev": "microbundle watch",
"build": "microbundle"
},
"keywords": [
"search",
"geocode",
"reverse-geocode",
"geofence",
"tsp",
"vrp",
"map",
"tile",
"vector-tile"
],
"author": "Mohammad H. Sattarian (mh_sattarian@outlook.com)",
"license": "MIT",
"devDependencies": {
"@types/geojson": "^7946.0.10",
"@types/osrm": "^5.25.2",
"microbundle": "^0.15.1"
}
}