-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"license": "BSD-2-Clause",
"name": "@placemarkio/geo-viewport",
"repository": {
"url": "git@github.com:placemark/geo-viewport.git",
"type": "git"
},
"files": [
"dist"
],
"source": "lib/index.ts",
"umd:main": "dist/geo-viewport.umd.js",
"unpkg": "dist/geo-viewport.umd.js",
"types": "dist/index.d.ts",
"browser": "dist/geo-viewport.umd.js",
"jsdelivr": "dist/geo-viewport.umd.js",
"module": "dist/geo-viewport.es.mjs",
"main": "dist/geo-viewport.cjs",
"exports": {
"require": "./dist/geo-viewport.cjs",
"types": "./dist/index.d.ts",
"default": "./dist/geo-viewport.es.mjs"
},
"author": "Tom MacWright",
"bugs": {
"url": "https://github.com/placemark/geo-viewport/issues"
},
"version": "1.0.1",
"scripts": {
"test": "vitest run",
"doc": "typedoc --options ./typedoc.json",
"prepublishOnly": "rollup -c rollup.config.mjs && npm run doc"
},
"keywords": [
"geographic",
"viewport",
"zoom",
"scale"
],
"devDependencies": {
"@rollup/plugin-typescript": "^10.0.1",
"prettier": "^2.8.0",
"rollup": "^3.5.0",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.1",
"typedoc": "^0.23.21",
"typescript": "^4.9.3",
"vitest": "^0.25.3"
},
"homepage": "https://github.com/placemark/geo-viewport",
"description": "convert between viewports and extents",
"volta": {
"node": "20.4.0"
},
"engines": {
"node": "*"
}
}