Skip to content

Instantly share code, notes, and snippets.

@kostasx
Last active August 29, 2015 14:00
Show Gist options
  • Save kostasx/11353570 to your computer and use it in GitHub Desktop.
Save kostasx/11353570 to your computer and use it in GitHub Desktop.
SublimeText - package.json for Node-Webkit Snippet
<snippet>
<content><![CDATA[
{
// REQUIRED (BASIC) FIELDS
"main": "${1:index.html}",
"name": "${2:nw-demo}",
// OPTIONAL FIELDS
"description": "${3:demo app of node-webkit}",
"version": "0.1.0",
"keywords": [ "demo", "node-webkit" ],
"window": {
"title": "node-webkit demo",
"icon": "link.png",
"toolbar": true,
"frame": false,
"width": 800,
"height": 500,
"position": "mouse",
"min_width": 400,
"min_height": 200,
"max_width": 800,
"max_height": 600
},
"webkit": {
"plugin": true
}
}
]]></content>
<tabTrigger>nw:json</tabTrigger>
<scope>source.json</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment