There is no 'package.json' - node-webkit app -


i'm making first desktop application using node-webkit.
followed steps package app on windows i'm getting error:

there no 'package.json' in package, please make sure 'package.json' in root of package. 

although package in root.

sample package.json file

{         "name": "name of app",         "version": "1.0.0",         "main": "index.html",         "single-instance": true,         "node-remote": "<local>",         "window": {             "title": "name show in title bar",             "icon": "icon show in titlebar",             "position": "center",             "min_width": 1024,             "min_height": 600,             "toolbar": true,             "width": 1362,             "height": 768         },         "dependencies": {             "express": "3.x"         },         "webkit": {             "plugin": true         }     } 

Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -