-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.34 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
{
"name": "@placemarkio/tokml",
"version": "0.3.4",
"description": "Convert GeoJSON to KML",
"main": "dist/tokml.cjs",
"module": "dist/tokml.es.mjs",
"typings": "dist/index.d.ts",
"author": "Tom MacWright",
"license": "MIT",
"exports": {
"require": "./dist/tokml.cjs",
"default": "./dist/tokml.es.mjs",
"types": "./dist/index.d.ts"
},
"keywords": [
"kml",
"geojson"
],
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"lint": "eslint . && tsc --noEmit",
"doc": "typedoc --options typedoc.json",
"prepublish": "rollup -c rollup.config.mjs && cp CNAME docs/CNAME",
"release": "standard-version"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@tmcw/togeojson": "5.4.0",
"@types/geojson": "^7946.0.8",
"eslint": "^8.18.0",
"prettier": "^2.7.1",
"rollup": "^3.2.4",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.5.0",
"tslib": "^2.4.0",
"typedoc": "^0.23.19",
"typescript": "^4.7.4",
"unist-builder": "^3.0.0",
"vitest": "^0.24.4",
"xast-util-to-xml": "^3.0.0",
"xastscript": "^3.0.0"
}
}