-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
80 lines (80 loc) · 1.78 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
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
71
72
73
74
75
76
77
78
79
80
{
"name": "sanity-plugin-leaflet-input",
"version": "1.0.1",
"description": "Leaflet geopoint input component for Sanity.io",
"main": "lib/GeopointInput.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "sanipack build",
"prepublishOnly": "sanipack build && sanipack verify"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rexxars/sanity-plugin-leaflet-input.git"
},
"keywords": [
"sanity-io",
"sanity",
"sanity-input-component",
"sanity-plugin",
"geopoint",
"map"
],
"author": "Espen Hovlandsdal",
"license": "MIT",
"dependencies": {
"esri-leaflet-geocoder": "^2.3.4",
"leaflet": "^1.6.0",
"prop-types": "^15.0.0",
"react-leaflet": "^2.6.3"
},
"devDependencies": {
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-sanity": "^1.149.0",
"eslint-plugin-react": "^7.19.0",
"prettier": "^2.0.4",
"react": "^17.0.0",
"sanipack": "^1.0.1"
},
"peerDependencies": {
"react": ">=16.2",
"react-dom": ">=16.2"
},
"bugs": {
"url": "https://github.com/rexxars/sanity-plugin-leaflet-input/issues"
},
"homepage": "https://github.com/rexxars/sanity-plugin-leaflet-input#readme",
"prettier": {
"semi": false,
"printWidth": 100,
"bracketSpacing": false,
"singleQuote": true
},
"eslintConfig": {
"extends": [
"sanity",
"sanity/react",
"prettier",
"prettier/react"
],
"env": {
"node": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": 2020,
"ecmaFeatures": {
"jsx": true
}
},
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"complexity": "off"
}
}
}