@sanity/google-maps-input 3.0.0-v3-studio.7 → 3.0.0-v3-studio.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 +42 -43
package/package.json
CHANGED
|
@@ -1,10 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/google-maps-input",
|
|
3
|
-
"version": "3.0.0-v3-studio.
|
|
3
|
+
"version": "3.0.0-v3-studio.8",
|
|
4
4
|
"description": "Sanity plugin providing input handlers for geo-related input types using Google Maps",
|
|
5
|
-
"
|
|
5
|
+
"keywords": [
|
|
6
|
+
"sanity",
|
|
7
|
+
"cms",
|
|
8
|
+
"headless",
|
|
9
|
+
"realtime",
|
|
10
|
+
"content",
|
|
11
|
+
"google-maps-input",
|
|
12
|
+
"sanity-plugin"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://github.com/sanity-io/google-maps-input#readme",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/sanity-io/google-maps-input/issues"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git@github.com:sanity-io/google-maps-input.git"
|
|
21
|
+
},
|
|
6
22
|
"license": "MIT",
|
|
7
|
-
"
|
|
23
|
+
"author": "Sanity.io <hello@sanity.io>",
|
|
8
24
|
"exports": {
|
|
9
25
|
".": {
|
|
10
26
|
"types": "./lib/src/index.d.ts",
|
|
@@ -12,10 +28,12 @@
|
|
|
12
28
|
"import": "./lib/index.esm.js",
|
|
13
29
|
"require": "./lib/index.js",
|
|
14
30
|
"default": "./lib/index.esm.js"
|
|
15
|
-
}
|
|
31
|
+
},
|
|
32
|
+
"./package.json": "./package.json"
|
|
16
33
|
},
|
|
17
34
|
"main": "./lib/index.js",
|
|
18
35
|
"module": "./lib/index.esm.js",
|
|
36
|
+
"source": "./src/index.ts",
|
|
19
37
|
"types": "./lib/src/index.d.ts",
|
|
20
38
|
"files": [
|
|
21
39
|
"src",
|
|
@@ -24,30 +42,16 @@
|
|
|
24
42
|
"sanity.json"
|
|
25
43
|
],
|
|
26
44
|
"scripts": {
|
|
27
|
-
"clean": "rimraf lib",
|
|
28
|
-
"prepare": "husky install",
|
|
29
45
|
"prebuild": "npm run clean && plugin-kit verify-package --silent && pkg-utils",
|
|
30
|
-
"build": "pkg-utils build",
|
|
31
|
-
"
|
|
46
|
+
"build": "pkg-utils build --strict",
|
|
47
|
+
"clean": "rimraf lib",
|
|
48
|
+
"compile": "tsc --noEmit",
|
|
32
49
|
"link-watch": "plugin-kit link-watch",
|
|
50
|
+
"lint": "eslint .",
|
|
51
|
+
"prepare": "husky install",
|
|
33
52
|
"prepublishOnly": "npm run build",
|
|
34
|
-
"
|
|
35
|
-
"lint": "eslint ."
|
|
53
|
+
"watch": "pkg-utils watch"
|
|
36
54
|
},
|
|
37
|
-
"sanityPlugin": {
|
|
38
|
-
"upgradeHelp": {
|
|
39
|
-
"sanityJson": false
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
"keywords": [
|
|
43
|
-
"sanity",
|
|
44
|
-
"cms",
|
|
45
|
-
"headless",
|
|
46
|
-
"realtime",
|
|
47
|
-
"content",
|
|
48
|
-
"google-maps-input",
|
|
49
|
-
"sanity-plugin"
|
|
50
|
-
],
|
|
51
55
|
"dependencies": {
|
|
52
56
|
"@sanity/incompatible-plugin": "^1.0.4",
|
|
53
57
|
"lodash": "^4.17.21",
|
|
@@ -56,10 +60,8 @@
|
|
|
56
60
|
"devDependencies": {
|
|
57
61
|
"@commitlint/cli": "^17.2.0",
|
|
58
62
|
"@commitlint/config-conventional": "^17.2.0",
|
|
59
|
-
"@
|
|
60
|
-
"@
|
|
61
|
-
"@sanity/pkg-utils": "^1.16.2",
|
|
62
|
-
"@sanity/plugin-kit": "^2.0.6",
|
|
63
|
+
"@sanity/pkg-utils": "^1.17.2",
|
|
64
|
+
"@sanity/plugin-kit": "^2.1.5",
|
|
63
65
|
"@sanity/semantic-release-preset": "^2.0.2",
|
|
64
66
|
"@types/google.maps": "^3.49.2",
|
|
65
67
|
"@types/styled-components": "^5.1.25",
|
|
@@ -73,10 +75,10 @@
|
|
|
73
75
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
74
76
|
"husky": "^8.0.1",
|
|
75
77
|
"lint-staged": "^13.0.3",
|
|
76
|
-
"parcel": "^2.6.0",
|
|
77
78
|
"prettier": "^2.7.1",
|
|
78
|
-
"
|
|
79
|
-
"react
|
|
79
|
+
"prettier-plugin-packagejson": "^2.3.0",
|
|
80
|
+
"react": "^18",
|
|
81
|
+
"react-dom": "^18",
|
|
80
82
|
"rimraf": "^3.0.2",
|
|
81
83
|
"sanity": "3.0.0-rc.0",
|
|
82
84
|
"styled-components": "^5.2.0",
|
|
@@ -84,26 +86,23 @@
|
|
|
84
86
|
},
|
|
85
87
|
"peerDependencies": {
|
|
86
88
|
"@sanity/icons": "^1.3",
|
|
87
|
-
"@sanity/ui": "
|
|
88
|
-
"react": "^18
|
|
89
|
-
"react-dom": "^18
|
|
89
|
+
"@sanity/ui": "1.0.0-beta.32",
|
|
90
|
+
"react": "^18",
|
|
91
|
+
"react-dom": "^18",
|
|
90
92
|
"sanity": "dev-preview || 3.0.0-rc.0",
|
|
91
93
|
"styled-components": "^5.2"
|
|
92
94
|
},
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"url": "git@github.com:sanity-io/google-maps-input.git"
|
|
96
|
-
},
|
|
97
|
-
"bugs": {
|
|
98
|
-
"url": "https://github.com/sanity-io/google-maps-input/issues"
|
|
95
|
+
"engines": {
|
|
96
|
+
"node": ">=14"
|
|
99
97
|
},
|
|
100
|
-
"homepage": "https://github.com/sanity-io/google-maps-input#readme",
|
|
101
98
|
"alias": {
|
|
102
99
|
"google": {
|
|
103
100
|
"global": "google"
|
|
104
101
|
}
|
|
105
102
|
},
|
|
106
|
-
"
|
|
107
|
-
"
|
|
103
|
+
"sanityPlugin": {
|
|
104
|
+
"upgradeHelp": {
|
|
105
|
+
"sanityJson": false
|
|
106
|
+
}
|
|
108
107
|
}
|
|
109
108
|
}
|