-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
69 lines (69 loc) · 1.94 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
69
{
"name": "@osrd-project/ui-warped-map",
"description": "A React component to display MapLibre maps warped along a given path.",
"version": "0.0.1-dev",
"license": "LGPL-3.0-or-later",
"private": true,
"homepage": "https://github.com/osrd-project/osrd-ui#readme",
"repository": {
"type": "git",
"url": "https://github.com/osrd-project/osrd-ui.git",
"directory": "packages/ui-warped-map"
},
"bugs": {
"url": "https://github.com/osrd-project/osrd-ui/issues"
},
"type": "module",
"main": "dist/index.esm.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.esm.js"
}
},
"scripts": {
"rollup": "rollup -c",
"clean": "rimraf dist",
"build": "npm run rollup",
"watch": "rollup -c -w",
"prepublishOnly": "npm run clean && npm run build",
"lint": "eslint src --max-warnings 0",
"lint:fix": "eslint src --fix"
},
"dependencies": {
"@turf/along": "^7.1.0",
"@turf/bbox": "^7.1.0",
"@turf/bbox-clip": "^7.1.0",
"@turf/bearing": "^7.1.0",
"@turf/bezier-spline": "^7.1.0",
"@turf/boolean-intersects": "^7.1.0",
"@turf/boolean-point-in-polygon": "^7.1.0",
"@turf/center": "^7.1.0",
"@turf/combine": "^7.1.0",
"@turf/destination": "^7.1.0",
"@turf/distance": "^7.1.0",
"@turf/explode": "^7.1.0",
"@turf/helpers": "^7.1.0",
"@turf/intersect": "^7.1.0",
"@turf/length": "^7.1.0",
"@turf/line-intersect": "^7.1.0",
"@turf/line-slice": "^7.1.0",
"@turf/line-slice-along": "^7.1.0",
"@turf/line-split": "^7.1.0",
"@turf/nearest-point": "^7.1.0",
"@turf/nearest-point-on-line": "^7.1.0",
"@turf/simplify": "^7.1.0",
"@turf/transform-translate": "^7.1.0",
"lodash": "^4.17.21",
"maplibre-gl": "^5.0.0",
"react-map-gl": "^7.1.7"
},
"peerDependencies": {
"react": ">=18.0"
}
}