-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
87 lines (87 loc) · 2.74 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-three-map",
"version": "0.8.2",
"description": "Use react-three-fiber inside MapLibre and Mapbox",
"main": "dist/cjs/main.js",
"module": "dist/es/main.mjs",
"types": "dist/types/mapbox.index.d.ts",
"sideEffects": false,
"repository": "https://github.com/RodrigoHamuy/react-three-map",
"homepage": "https://github.com/RodrigoHamuy/react-three-map",
"bugs": {
"url": "https://github.com/RodrigoHamuy/react-three-map/issues"
},
"license": "MIT",
"author": "RodrigoHamuy",
"scripts": {
"prebuild": "tsc --project tsconfig.mapbox.json && tsc --project tsconfig.maplibre.json",
"build": "yarn build:maplibre && yarn build:mapbox",
"build:maplibre": "cross-env LIB_MODE=1 MAP_MODE=0 vite build",
"postbuild:maplibre": "cross-env LIB_MODE=2 MAP_MODE=0 vite build",
"build:mapbox": "cross-env LIB_MODE=1 MAP_MODE=1 vite build",
"postbuild:mapbox": "cross-env LIB_MODE=2 MAP_MODE=1 vite build",
"release": "yarn build && yarn changeset publish",
"lint": "eslint src example-maplibre/src example-mapbox/src stories --ext ts,tsx --fix",
"preview": "vite preview",
"ts": "tsc -w",
"ts:check": "tsc",
"dev": "yarn ladle serve",
"build:stories": "yarn ladle build",
"test": "yarn vitest"
},
"dependencies": {},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@ladle/react": "^4.0.2",
"@react-three/drei": "^9.97.6",
"@react-three/fiber": "^8.15.12",
"@react-three/postprocessing": "^2.15.11",
"@types/luxon": "^3.3.1",
"@types/node": "^20.3.1",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/suncalc": "^1.9.0",
"@types/three": "^0.159.0",
"@types/tz-lookup": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vitejs/plugin-react": "^4.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"happy-dom": "^10.5.2",
"leva": "^0.9.35",
"luxon": "^3.3.0",
"mapbox-gl": "^3.1.2",
"maplibre-gl": "^3.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-map-gl": "^7.1.7",
"suncalc": "^1.9.0",
"suspend-react": "^0.1.3",
"three": "^0.159.0",
"three-stdlib": "^2.28.7",
"typescript": "~5.0.2",
"tz-lookup": "^6.1.25",
"vite": "^4.4.4",
"vitest": "^0.33.0",
"web-ifc-three": "^0.0.125"
},
"peerDependencies": {
"@react-three/fiber": ">=8.13",
"mapbox-gl": ">=2.15",
"maplibre-gl": ">=3.2",
"react": ">=18.0",
"react-map-gl": ">=7.1",
"three": ">=0.133"
},
"peerDependenciesMeta": {
"mapbox-gl": {
"optional": true
},
"maplibre-gl": {
"optional": true
}
}
}