-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
23 lines (23 loc) · 894 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
{
"name": "kactus-git-workflow",
"version": "1.0.0",
"description": "Use Sketch as part of a true git design workflow",
"config": {
"filename": "yourprojectname"
},
"scripts": {
"start": "npm install && npm run watch",
"watch": "nodemon -e sketch -x \"npm run updateKactus\"",
"new": "kactus createNew $npm_package_config_filename",
"refreshSketch": "/Applications/Sketch.app/Contents/Resources/sketchtool/bin/sketchtool run /Applications/Kactus.app/Contents/Resources/app/plugin.sketchplugin refresh-files --without-activating",
"updateSketchFile": "kactus import $npm_package_config_filename && npm run refreshSketch",
"updateKactus": "kactus parse $npm_package_config_filename.sketch"
},
"author": "Thinkbright",
"license": "ISC",
"dependencies": {
"kactus-cli": "^0.1.13",
"nodemon": "^1.11.0",
"shared-git-hooks": "^1.2.1"
}
}