-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 921 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-copycat",
"version": "1.1.0",
"description": "Duplicate layout from Artboard using Layer Style.",
"author": "Ashar Setiawan",
"license": "MIT",
"homepage": "https://github.com/azhsetiawan/sketch-copycat",
"engines": {
"sketch": ">=49.0"
},
"skpm": {
"name": "Copycat",
"main": "copycat.sketchplugin",
"manifest": "src/manifest.json",
"assets": [
"assets/**/*"
]
},
"scripts": {
"build": "skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"postinstall": "npm run build && skpm-link"
},
"devDependencies": {
"@skpm/builder": "^0.7.7"
},
"repository": {
"type": "git",
"url": "https://github.com/azhsetiawan/sketch-copycat.git"
},
"keywords": [
"sketch",
"sketch-plugin",
"copycat"
],
"bugs": {
"url": "https://github.com/azhsetiawan/sketch-copycat/issues"
}
}