-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
{
"name": "betterknown",
"version": "1.0.4",
"homepage": "https://github.com/placemark/betterknown",
"repository": {
"type": "git",
"url": "git://github.com/placemark/betterknown.git"
},
"license": "MIT",
"exports": {
".": {
"import": "./dist/betterknown.mjs",
"require": "./dist/betterknown.umd.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/betterknown.umd.js",
"module": "./dist/betterknown.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "vite build && tsc --declaration --emitDeclarationOnly",
"doc": "typedoc --options ./typedoc.json",
"prepare": "npm run build",
"test": "vitest run"
},
"dependencies": {
"@types/geojson": "^7946.0.10"
},
"devDependencies": {
"@vitest/coverage-c8": "^0.22.1",
"benchmark": "^2.1.4",
"prettier": "^2.7.1",
"proj4": "^2.8.0",
"typedoc": "^0.23.10",
"typescript": "^4.7.4",
"vite": "^3.0.9",
"vitest": "^0.22.1",
"wkx": "^0.5.0"
},
"volta": {
"node": "18.7.0"
}
}