-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 983 Bytes
/
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
{
"name": "sketch-a-sketch",
"description": "Bringing the iconic knobs from the famous toy to Sketch.",
"version": "0.1.0",
"engines": {
"sketch": ">=3.0"
},
"skpm": {
"name": "Sketch a Sketch",
"manifest": "src/manifest.json",
"main": "sketch-a-sketch.sketchplugin",
"assets": [
"assets/**/*"
]
},
"scripts": {
"build": "skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch",
"postinstall": "npm run build && skpm-link"
},
"devDependencies": {
"@skpm/builder": "^0.5.11",
"@skpm/extract-loader": "^2.0.2",
"css-loader": "^1.0.0",
"html-loader": "^0.5.1"
},
"resources": [
"resources/**/*.js"
],
"dependencies": {
"@webcomponents/custom-elements": "^1.2.1",
"sketch-module-web-view": "^2.1.6"
},
"author": "Mathieu Dutour <mathieu@dutour.me>",
"repository": {
"type": "git",
"url": "git+https://github.com/mathieudutour/sketch-a-sketch.git"
}
}