forked from mapbox/togeojson
-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
68 lines (68 loc) · 1.65 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@tmcw/togeojson",
"version": "6.0.0",
"description": "convert KML and GPX to GeoJSON",
"source": "lib/index.ts",
"umd:main": "dist/togeojson.umd.js",
"unpkg": "dist/togeojson.umd.js",
"types": "dist/index.d.ts",
"browser": "dist/togeojson.umd.js",
"jsdelivr": "dist/togeojson.umd.js",
"module": "dist/togeojson.es.mjs",
"main": "dist/togeojson.cjs",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/togeojson.cjs",
"default": "./dist/togeojson.es.mjs"
},
"files": ["dist"],
"scripts": {
"test": "vitest run",
"lint": "biome check",
"doc": "typedoc --options ./typedoc.json && cp CNAME docs/CNAME",
"prepare": "rollup -c rollup.config.mjs",
"release": "standard-version"
},
"peerDependencies": {
"@types/geojson": "*",
"@xmldom/xmldom": "^0.9.5"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@placemarkio/check-geojson": "^0.1.12",
"@rollup/plugin-typescript": "^12.1.1",
"@types/geojson": "^7946.0.14",
"@vitest/coverage-v8": "*",
"@xmldom/xmldom": "^0.9.5",
"rollup": "^4.27.4",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.8.1",
"typedoc": "^0.26.11",
"typescript": "^5.7.2",
"vitest": "^2.1.5"
},
"repository": {
"type": "git",
"url": "git://github.com/placemark/togeojson.git"
},
"license": "BSD-2-Clause",
"keywords": [
"kml",
"geojson",
"gpx",
"tcx",
"geo",
"parser",
"formatter",
"input",
"leaflet",
"maps"
],
"engines": {
"node": "*"
},
"dependencies": {
"@rollup/plugin-terser": "^0.4.4"
}
}