From dd7efae6b155fc9159afe2816aee5efc084903dc Mon Sep 17 00:00:00 2001 From: = <=> Date: Sun, 2 Aug 2020 21:18:24 +0100 Subject: [PATCH] Converted to package.json format --- .gitignore | 2 ++ appinfo.json | 32 -------------------------------- package.json | 41 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 43 insertions(+), 32 deletions(-) delete mode 100644 appinfo.json create mode 100644 package.json diff --git a/.gitignore b/.gitignore index a6598b8..102357d 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,5 @@ tags *.swp *.vims + +node_modules/ diff --git a/appinfo.json b/appinfo.json deleted file mode 100644 index 6529956..0000000 --- a/appinfo.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "appKeys": {}, - "capabilities": [ - "" - ], - "companyName": "Sage V.", - "enableMultiJS": false, - "longName": "PebbLisp", - "projectType": "native", - "resources": { - "media": [ - { - "file": "images/appicon.png", - "menuIcon": true, - "name": "APP_ICON_IDENTIFIER", - "targetPlatforms": null, - "type": "png" - } - ] - }, - "sdkVersion": "3", - "shortName": "PebbLisp", - "targetPlatforms": [ - "aplite", - "basalt" - ], - "uuid": "70ec170a-8e1b-11ea-bc55-0242ac130003", - "versionLabel": "0.2", - "watchapp": { - "watchface": false - } -} diff --git a/package.json b/package.json new file mode 100644 index 0000000..58bc404 --- /dev/null +++ b/package.json @@ -0,0 +1,41 @@ +{ + "version": "0.2.0", + "author": "Sage V.", + "private": true, + "dependencies": {}, + "keywords": [ + "pebble-app" + ], + "pebble": { + "sdkVersion": "3", + "resources": { + "media": [ + { + "type": "png", + "menuIcon": true, + "targetPlatforms": null, + "name": "APP_ICON_IDENTIFIER", + "file": "images/appicon.png" + } + ] + }, + "projectType": "native", + "uuid": "70ec170a-8e1b-11ea-bc55-0242ac130003", + "messageKeys": {}, + "enableMultiJS": false, + "displayName": "PebbLisp", + "watchapp": { + "onlyShownOnCommunication": false, + "hiddenApp": false, + "watchface": false + }, + "targetPlatforms": [ + "aplite", + "basalt" + ], + "capabilities": [ + "" + ] + }, + "name": "PebbLisp" +} \ No newline at end of file