0

node-webkit を使用して初めてのデスクトップ アプリケーションを作成しています。
すべての手順に従って Windows でアプリをパッケージ化しましたが、次のエラーが発生します。

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

パッケージはルートにありますが。

4

2 に答える 2

0

サンプルの 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
        }
    }
于 2015-07-13T13:30:07.357 に答える
0

わかりました、間違いを見つけました。実際、パッケージ json とその他のファイルを含むフォルダーを圧縮していました。だから私が作ったのはそのようなものでした:

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

正しいのは次のとおりです。

App.zip
   |-package.json
   |-Other files
于 2015-07-14T10:20:48.920 に答える