-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1010 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
{
"name": "tile-lnglat-transform-es6",
"version": "1.0.1",
"description": "提供了高德、百度、谷歌、腾讯和必应地图的经纬度坐标与瓦片坐标的相互转换",
"type": "module",
"main": "build/index.js",
"module": "build/index.js",
"jsdelivr": "build/index.umd.cjs",
"types": "types/index.d.ts",
"exports": {
".": {
"import": "./build/index.js",
"require": "./build/index.umd.cjs",
"types": "./types/index.d.ts"
}
},
"scripts": {
"build": "tsc && vite build"
},
"repository": {
"type": "git",
"url": "https://github.com/aliothor/tile-lnglat-transform-es6.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"tile",
"coords",
"transform"
],
"author": "aliothor",
"license": "MIT",
"devDependencies": {
"@antfu/eslint-config": "1.0.0-beta.27",
"@types/node": "^20.8.6",
"eslint": "^8.51.0",
"typescript": "^5.2.2",
"vite": "^4.4.11"
}
}