-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "sketch-map-generator",
"description": "Plugin to fill a shape with a map generated from a location (Google Maps and Mapbox)",
"version": "4.4.0",
"engines": {
"sketch": ">=53.0"
},
"skpm": {
"name": "Map Generator",
"manifest": "src/manifest.json",
"main": "Map Generator.sketchplugin",
"assets": [
"assets/**/*"
],
"sketch-assets-file": "sketch-assets/icons.sketch"
},
"scripts": {
"build": "skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch",
"postinstall": "npm run build && skpm-link"
},
"devDependencies": {
"@skpm/builder": "^0.7.4",
"@skpm/extract-loader": "^2.0.2",
"css-loader": "^3.2.0",
"html-loader": "^0.5.5"
},
"resources": [
"resources/**/*.js"
],
"dependencies": {
"sketch-module-web-view": "^3.4.1"
},
"author": "Eduardo Gómez",
"homepage": "https://github.com/eddiesigner/sketch-map-generator",
"repository": {
"type": "git",
"url": "https://github.com/eddiesigner/sketch-map-generator.git"
}
}