-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.75 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
{
"name": "@vis.gl/react-maplibre",
"description": "React components for Maplibre GL JS",
"version": "1.0.0-alpha.5",
"keywords": [
"maplibre",
"maplibre-gl",
"react",
"react maplibre"
],
"repository": {
"type": "git",
"url": "https://github.com/visgl/react-maplibre.git"
},
"license": "MIT",
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"src",
"dist",
"README.md"
],
"scripts": {
"bootstrap": "yarn && ocular-bootstrap && npm run build",
"typecheck": "tsc -p tsconfig.build.json --noEmit",
"build": "ocular-clean && ocular-build",
"lint": "ocular-lint",
"publish-beta": "ocular-publish version-only-beta",
"publish-prod": "ocular-publish version-only-prod",
"test": "ocular-test",
"test-fast": "yarn typecheck && ocular-test node",
"metrics": "ocular-metrics",
"update-release-branch": "scripts/update-release-branch.sh"
},
"dependencies": {
"@maplibre/maplibre-gl-style-spec": "^19.2.1"
},
"peerDependencies": {
"maplibre-gl": ">=4.0.0",
"react": ">=16.3.0",
"react-dom": ">=16.3.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^16.0.0",
"@vis.gl/dev-tools": "1.0.0-alpha.19",
"@vis.gl/ts-plugins": "1.0.0-alpha.19",
"jsdom": "^16.5.0",
"maplibre-gl": "^4.0.0",
"pre-commit": "^1.2.2",
"puppeteer": "^22.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^5.0.0"
},
"volta": {
"node": "20.15.1",
"yarn": "4.4.1"
},
"pre-commit": [
"test-fast"
]
}