-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.31 KB
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": "animaps",
"version": "0.1.0",
"description": "animated travel route maps for react",
"type": "module",
"license": "MIT",
"author": "mortspace",
"homepage": "https://github.com/mortspace/animaps",
"repository": {
"type": "git",
"url": "git+https://github.com/mortspace/animaps.git"
},
"keywords": [
"maps",
"maplibre",
"travel",
"route",
"animation",
"video",
"react"
],
"main": "./dist/animaps.cjs",
"module": "./dist/animaps.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/animaps.js",
"require": "./dist/animaps.cjs"
},
"./style.css": "./dist/animaps.css"
},
"sideEffects": [
"**/*.css"
],
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"maplibre-gl": "^5.24.0",
"motion": "^12.0.0",
"mp4-muxer": "^5.2.2",
"webm-muxer": "^5.1.4"
},
"devDependencies": {
"@types/geojson": "^7946.0.16",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.3.0"
}
}