没有 'package.json' - node-webkit 应用程序

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

我正在使用 node-webkit 制作我的第一个桌面应用程序。
我按照所有步骤在 windows 上打包应用程序,但出现此错误:

There is no 'package.json' in the package, please make sure the 'package.json' is in the root of the package.

尽管包在根目录中。

示例package.json 文件

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

好的,我发现了我的错误。事实上,我正在压缩包含包 json 和其他文件的文件夹。所以我做的是这样的:

App.zip
|
|-App
   |-package.json
   |-Other files

正确的是:

App.zip
   |-package.json
   |-Other files