Сообщение от Maxmaxmaximus6
|
в смысле мне надо создать описание требуемых модулей в каком-то файлике?
|
package.json вот пример
{
"name": "nw-demo",
"main": "index.html",
"version": "0.0.1",
"description": "",
"dependencies": {
"grunt-contrib-compress": "~0.5.3",
"grunt": "~0.4.2",
"grunt-contrib-uglify": "~0.2.7"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-uglify": "~0.2.7",
"grunt-contrib-compress": "~0.5.3",
"grunt-cli": "~0.1.11"
},
"window": {
"title": "node-webkit demo",
"toolbar": false,
"frame": false,
"width": 800,
"height": 500,
"position": "mouse",
"min_width": 400,
"min_height": 200,
"max_width": 800,
"max_height": 600
}
}