@zurigo/maps 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +50 -0
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zurigo/maps",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Reusable Google Maps components for solar panel projects",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "tsc",
|
|
12
|
+
"dev": "tsc --watch",
|
|
13
|
+
"clean": "rm -rf dist",
|
|
14
|
+
"prepublishOnly": "npm run clean && npm run build",
|
|
15
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"google-maps",
|
|
19
|
+
"solar-panel",
|
|
20
|
+
"react",
|
|
21
|
+
"typescript"
|
|
22
|
+
],
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/wejinc/zurigo-maps.git"
|
|
26
|
+
},
|
|
27
|
+
"author": "WEJ Inc.",
|
|
28
|
+
"license": "UNLICENSED",
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/wejinc/zurigo-maps/issues"
|
|
31
|
+
},
|
|
32
|
+
"homepage": "https://github.com/wejinc/zurigo-maps#readme",
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"next": ">=13.0.0",
|
|
35
|
+
"react": ">=18.0.0"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@googlemaps/js-api-loader": "^1.16.2",
|
|
39
|
+
"lucide-react": "^0.544.0"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@types/google.maps": "^3.58.1",
|
|
43
|
+
"@types/node": "^20.0.0",
|
|
44
|
+
"@types/react": "^18.0.0",
|
|
45
|
+
"typescript": "^5.0.0"
|
|
46
|
+
},
|
|
47
|
+
"publishConfig": {
|
|
48
|
+
"access": "public"
|
|
49
|
+
}
|
|
50
|
+
}
|