-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.76 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
{
"name": "filament-map-picker",
"version": "1.4.0",
"description": "A filament plugin designed to simplify the process of selecting a location on a map and obtaining its geo-coordinates with the ease of having the Geoman plugin embedded.",
"repository": {
"type": "git",
"url": "git+https://github.com/vitormicillo/filament-map-picker.git"
},
"private": true,
"type": "module",
"scripts": {
"dev:styles": "npx tailwindcss -i resources/css/index.css -o resources/dist/filament-map-picker.css --postcss --watch",
"dev:scripts": "node bin/build.js --dev",
"build:styles": "npx tailwindcss -i resources/css/index.css -o resources/dist/filament-map-picker.css --postcss --minify && npm run purge",
"build:scripts": "node bin/build.js",
"purge": "filament-purge -i resources/dist/filament-map-picker.css -o resources/dist/filament-map-picker.css -v 3.x",
"dev": "npm-run-all --parallel dev:*",
"build": "npm-run-all build:*"
},
"devDependencies": {
"@awcodes/filament-plugin-purge": "^1.1.1",
"@tailwindcss/forms": "^0.5.4",
"@tailwindcss/typography": "^0.5.9",
"autoprefixer": "^10.4.14",
"esbuild": "^0.24.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.26",
"postcss-assets": "^6.0.0",
"postcss-import": "^16.1.0",
"postcss-url": "^10.1.3",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.3.3"
},
"dependencies": {
"@geoman-io/leaflet-geoman-free": "^2.17.0",
"dom-to-image": "^2.6.0",
"esbuild-plugin-url": "^0.0.1",
"file-saver": "^2.0.5",
"leaflet": "^1.9.4",
"leaflet-fullscreen": "^1.0.2"
}
}