-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.04 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.04 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
63
64
65
66
67
68
69
70
{
"name": "@sofarocean/mapbox-context",
"version": "2.2.0",
"description": "A React wrapper for Mapbox GL JS built for the era of React Context and Hooks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Wayfinder Engineering <eng-wayfinder@sofarocean.com>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/wavespotter/mapbox-context.git"
},
"homepage": "https://github.com/wavespotter/mapbox-context",
"files": [
"package.json",
"README.md",
"CHANGELOG.md",
"dist"
],
"scripts": {
"build": "yarn typecheck && yarn knip && yarn lint && yarn test && vite build --config vite.config.js",
"build:watch": "vite build --config vite.config.js --watch",
"lint": "eslint .",
"knip": "knip",
"storybook": "storybook dev",
"storybook:build": "storybook build",
"test": "vitest --passWithNoTests --run",
"test:watch": "vitest --passWithNoTests",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@storybook/addon-links": "^9.1.2",
"@storybook/react": "^9.1.2",
"@storybook/react-vite": "^9.1.2",
"@types/geojson": "^7946.0.16",
"@types/node": "^22.16.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"eslint": "^9.34.0",
"glob": "^11.0.3",
"knip": "^5.62.0",
"react-dom": "^18.2.0",
"storybook": "^9.1.2",
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0",
"vite": "^7.1.2",
"vite-plugin-css-injected-by-js": "^4.0.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
},
"dependencies": {
"@mapbox-controls/zoom": "^3.0.0",
"@turf/turf": "^7.2.0",
"fast-equals": "^5.2.2",
"mapbox-gl": "^3.14.0",
"react": "^18.2.0",
"use-deep-compare-effect": "^1.3.1"
},
"peerDependencies": {
"@mapbox-controls/zoom": "^3.0.0",
"@turf/turf": "^7.2.0",
"fast-equals": "^5.2.2",
"mapbox-gl": "^3.14.0",
"react": "^18.2.0",
"use-deep-compare-effect": "^1.3.1"
}
}