-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 974 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
42
{
"type": "module",
"name": "topohelper",
"description": "TopoJSON helper help you manipulate topoJSON files with ease",
"version": "0.5.1",
"author": "Thomas Ansart",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/topohelper.umd.cjs",
"module": "./dist/topohelper.js",
"exports": {
".": {
"import": "./dist/topohelper.js",
"require": "./dist/topohelper.umd.cjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/AtelierCartographie/topohelper.git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"d3-geo": "^3.1.0",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"flatbush": "^4.0.0",
"point-in-polygon-hao": "^1.1.0",
"polylabel": "^1.1.0",
"topojson-client": "^3.1.0",
"topojson-server": "^3.0.1",
"topojson-simplify": "^3.0.3"
},
"devDependencies": {
"vite": "^3.2.5"
}
}