-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "@wprdc/types",
"version": "0.0.0",
"license": "MIT",
"private": true,
"types": "./dist/index.d.mts",
"exports": "./dist/index.mjs",
"files": [
"dist/**"
],
"scripts": {
"build": "tsup",
"lint": "eslint src/",
"dev": "tsup --watch",
"type-check": "tsc --noEmit",
"update": "pnpm update",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"peerDependencies": {
"react": "^19.0.0"
},
"dependencies": {
"@maplibre/maplibre-gl-style-spec": "^21.2.0",
"@react-types/shared": "^3.26.0",
"@strapi/strapi": "^5.6.0",
"html-react-parser": "^5.2.2",
"maplibre-gl": "^4.7.1",
"react-map-gl": "^7.1.8"
},
"devDependencies": {
"@react-types/shared": "^3.25.0",
"@types/geojson": "^7946.0.15",
"@types/node": "^22.10.5",
"@types/react": "^19.0.3",
"@types/react-dom": "^19.0.2",
"@wprdc/eslint-config": "workspace:*",
"@wprdc/tailwind-config": "workspace:*",
"@wprdc/typescript-config": "workspace:*",
"react": "^19.0.0",
"react-vega": "^7.6.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}