{
  "name": "daskeyboard-applet--crypto-watch",
  "displayName": "Crypto Watch",
  "version": "1.1.0",
  "description": "Displays cryptocurrency prices.",
  "longDescription": "Monitor your favorite cryptocurrecny prices.",
  "officialProductName": "Crypto Watch",
  "appUrl": "",
  "publisherName": "Brandon Wolfe",
  "publisher": "Brandon Wolfe",
  "isSingleton": false,
  "videoUrl": "",
  "icon": "assets/icon.png",
  "image": "assets/image-missing.png",
  "authorName": "Brandon Wolfe",
  "authorUrl": "https://github.com/Wolfe1",
  "issuesUrl": "https://github.com/Wolfe1/daskeyboard-applet--crypto-watch/issues",
  "homePageUrl": "https://github.com/Wolfe1/daskeyboard-applet--crypto-watch",
  "developerRepoUrl": "https://github.com/Wolfe1/daskeyboard-applet--crypto-watch",
  "licenseUrl": "http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt",
  "changelogUrl": "CHANGELOG.md",
  "license": "MIT",
  "readMeUrl": "README.md",
  "readMeEndUserUrl": "README_ENDUSER.md",
  "dependencies": {
    "daskeyboard-applet": "^2.11.5",
    "localStorage": "^1.0.4",
    "moment": "2.29.4"
  },
  "engines": {
    "das-keyboard-q": "3.2.4"
  },
  "applet": {
    "defaults": {}
  },
  "main": "index.js",
  "scripts": {
    "test": "nyc mocha",
    "coverage": "nyc report --reporter=lcov",
    "snyk-protect": "snyk protect",
    "prepare": "yarn run snyk-protect"
  },
  "qConfig": {
    "geometry": {
      "width": 1,
      "height": 1
    },
    "questions": [
      {
        "key": "currency",
        "label": "Enter currency pair here",
        "help": "Ex: LTC-USD, ETH-EUR, BAT-USD",
        "required": true,
        "order": 1,
        "controlType": "textbox",
        "value": "BTC-USD"
      },
      {
        "key": "decimals",
        "label": "How many decimal places for calculations and display?",
        "value": "2",
        "required": true,
        "order": 2,
        "controlType": "dropdown",
        "options": [
          {
            "key": "0",
            "value": "0"
          },
          {
            "key": "1",
            "value": "1"
          },
          {
            "key": "2",
            "value": "2"
          },
          {
            "key": "3",
            "value": "3"
          },
          {
            "key": "4",
            "value": "4"
          },
          {
            "key": "5",
            "value": "5"
          }
        ]
      },
      {
        "key": "refresh",
        "label": "Refresh interval",
        "help": "How often do you want to receive new data?",
        "value": "60",
        "required": true,
        "order": 3,
        "controlType": "dropdown",
        "options": [
          {
            "key": "1",
            "value": "1 minute"
          },
          {
            "key": "5",
            "value": "5 minutes"
          },
          {
            "key": "10",
            "value": "10 minutes"
          },
          {
            "key": "15",
            "value": "15 minutes"
          },
          {
            "key": "30",
            "value": "30 minutes"
          },
          {
            "key": "60",
            "value": "60 minutes"
          }
        ]
      },
      {
        "key": "threshold",
        "label": "Threshold for a flashing alert",
        "value": "5",
        "required": true,
        "order": 4,
        "controlType": "dropdown",
        "options": [
          {
            "key": "1",
            "value": "1%"
          },
          {
            "key": "2",
            "value": "2%"
          },
          {
            "key": "3",
            "value": "3%"
          },
          {
            "key": "4",
            "value": "4%"
          },
          {
            "key": "5",
            "value": "5%"
          }
        ]
      },
      {
        "key": "threshold_effect",
        "label": "Effect when threshold is met",
        "value": "BREATHE",
        "required": true,
        "order": 5,
        "controlType": "dropdown",
        "options": [
          {
            "key": "BREATHE",
            "value": "Breathe"
          },
          {
            "key": "BLINK",
            "value": "Blink"
          }
        ]
      },
      {
        "key": "isMuted",
        "label": "Display alerts?",
        "help": "Display an alert window (bottom right of the screen) on each update?",
        "required": true,
        "order": 6,
        "controlType": "checkbox",
        "value": false
      }
    ]
  },
  "devDependencies": {
    "coveralls": "^3.1.1",
    "mocha": "^9.2.2",
    "nyc": "^15.1.0",
    "snyk": "^1.1088.0"
  },
  "snyk": true
}
