react-bing-map 1.0.7 → 1.0.8

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-bing-map",
3
- "description": "",
3
+ "description": "React Bing Maps component with pushpins, route navigation, GPS current-location routing, distance, and route selection drawer.",
4
4
  "author": {
5
5
  "name": "Mohanraj Kandasamy",
6
6
  "email": "mohanksv.89@gmail.com",
@@ -12,53 +12,75 @@
12
12
  "bingmap",
13
13
  "bing map",
14
14
  "react bing map",
15
+ "bing maps route",
16
+ "bing maps gps",
17
+ "route navigation",
15
18
  "typescript",
16
19
  "react"
17
20
  ],
18
- "version": "1.0.7",
21
+ "version": "1.0.8",
19
22
  "private": false,
20
23
  "license": "MIT",
21
- "main": "./lib/cjs/index.js",
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/kmohanraj/react-bing-map.git"
27
+ },
28
+ "bugs": {
29
+ "url": "https://github.com/kmohanraj/react-bing-map/issues"
30
+ },
31
+ "homepage": "https://github.com/kmohanraj/react-bing-map#readme",
32
+ "main": "./lib/cjs/index.cjs",
22
33
  "module": "./lib/esm/index.js",
23
34
  "types": "./lib/esm/index.d.ts",
24
35
  "type": "module",
36
+ "exports": {
37
+ ".": {
38
+ "types": "./lib/esm/index.d.ts",
39
+ "import": "./lib/esm/index.js",
40
+ "require": "./lib/cjs/index.cjs"
41
+ }
42
+ },
43
+ "sideEffects": false,
25
44
  "files": [
26
- "/lib"
45
+ "lib"
27
46
  ],
47
+ "publishConfig": {
48
+ "access": "public"
49
+ },
28
50
  "scripts": {
29
51
  "build": "rollup -c",
30
52
  "build:watch": "rollup -c --watch",
31
53
  "storybook": "storybook dev -p 6006",
32
- "build-storybook": "storybook build"
54
+ "build-storybook": "storybook build",
55
+ "prepack": "npm run build"
33
56
  },
34
57
  "devDependencies": {
35
- "@rollup/plugin-commonjs": "^25.0.2",
36
- "@rollup/plugin-node-resolve": "^15.1.0",
37
- "@rollup/plugin-typescript": "^11.1.2",
38
- "@storybook/addon-essentials": "^7.2.0",
39
- "@storybook/addon-interactions": "^7.2.0",
40
- "@storybook/addon-links": "^7.2.0",
41
- "@storybook/addon-onboarding": "^1.0.8",
42
- "@storybook/blocks": "^7.2.0",
43
- "@storybook/react": "^7.2.0",
44
- "@storybook/react-vite": "^7.2.0",
45
- "@storybook/testing-library": "^0.2.0",
46
- "@types/react": "^18.2.15",
47
- "@types/react-dom": "^18.2.7",
48
- "node-sass": "^9.0.0",
49
- "postcss": "^8.4.26",
50
- "react": "^18.2.0",
51
- "react-dom": "^18.2.0",
52
- "rollup": "^3.26.2",
58
+ "@rollup/plugin-commonjs": "^28.0.0",
59
+ "@rollup/plugin-node-resolve": "^15.3.0",
60
+ "@rollup/plugin-typescript": "^12.1.0",
61
+ "@storybook/addon-essentials": "^8.3.0",
62
+ "@storybook/addon-interactions": "^8.3.0",
63
+ "@storybook/addon-links": "^8.3.0",
64
+ "@storybook/addon-onboarding": "^8.3.0",
65
+ "@storybook/blocks": "^8.3.0",
66
+ "@storybook/react": "^8.3.0",
67
+ "@storybook/react-vite": "^8.3.0",
68
+ "@storybook/test": "^8.3.0",
69
+ "@types/react": "^19.0.0",
70
+ "@types/react-dom": "^19.0.0",
71
+ "postcss": "^8.4.47",
72
+ "react": "^19.0.0",
73
+ "react-dom": "^19.0.0",
74
+ "rollup": "^4.21.0",
53
75
  "rollup-plugin-peer-deps-external": "^2.2.4",
54
76
  "rollup-plugin-postcss": "^4.0.2",
55
- "sass": "^1.63.6",
56
- "storybook": "^7.2.0",
57
- "tslib": "^2.6.0",
58
- "typescript": "^5.1.6"
77
+ "sass": "^1.77.8",
78
+ "storybook": "^8.3.0",
79
+ "tslib": "^2.7.0",
80
+ "typescript": "^5.5.4"
59
81
  },
60
82
  "peerDependencies": {
61
- "react": "^16 || ^17 || ^18",
62
- "react-dom": "^16 || ^17 || ^18"
83
+ "react": "^16 || ^17 || ^18 || ^19",
84
+ "react-dom": "^16 || ^17 || ^18 || ^19"
63
85
  }
64
86
  }