created configuration and base code
This commit is contained in:
106
package.json
Normal file
106
package.json
Normal file
@@ -0,0 +1,106 @@
|
||||
{
|
||||
"name": "daskeyboard-applet--imap",
|
||||
"publisher": "Jali <jali@orca-central.de>",
|
||||
"displayName": "Q alerts for IMAP mail",
|
||||
"version": "0.1.20121.1",
|
||||
"description": "Notifies when new unread mail arrives in the inbox",
|
||||
"longDescription": "Get email alerts directly on a Das Keyboard Q device. Requires an IMAP capable email account.",
|
||||
"icon": "assets/icon.png",
|
||||
"developmentRepoUrl": "https://git.orca-central.de/jali/daskeyboard-applet--imap",
|
||||
"officialProductName": "Q alerts for IMAP",
|
||||
"image": "assets/image.png",
|
||||
"authorName": "Jali",
|
||||
"authorUrl": "https://twitter.com/ccc_jali",
|
||||
"issuesUrl": "https://git.orca-central.de/jali/daskeyboard-applet--imap/issues",
|
||||
"homePageUrl": "https://git.orca-central.de/jali/daskeyboard-applet--imap",
|
||||
"licenseUrl": "http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt",
|
||||
"readmeUrl": "README.md",
|
||||
"readMeEndUserUrl": "README_END_USER.md",
|
||||
"changelogUrl": "CHANGELOG.md",
|
||||
"engines": {
|
||||
"das-keyboard-q": "3.1.0"
|
||||
},
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"author": "Jali",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"daskeyboard-applet": "2.11.3",
|
||||
"imap": ">=0.8.19"
|
||||
},
|
||||
"isSingleton": false,
|
||||
"qconfig": {
|
||||
"geometry": {
|
||||
"width": 1,
|
||||
"height": 1,
|
||||
"defaults": {
|
||||
"origin": {
|
||||
"x": 0,
|
||||
"y": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
"authorization": {
|
||||
"type": "oauth2"
|
||||
},
|
||||
"questions": [{
|
||||
"key": "server",
|
||||
"label": "Enter the servername",
|
||||
"help": "Enter the name of your IMAP server",
|
||||
"placeholder": "imap.server.com",
|
||||
"required": true,
|
||||
"order": 1,
|
||||
"controlType": "textbox"
|
||||
},
|
||||
{
|
||||
"key": "imaps",
|
||||
"label": "Use encryption",
|
||||
"help": "Check, if your server uses encryption",
|
||||
"order": 2,
|
||||
"controlType": "checkbox"
|
||||
},
|
||||
{
|
||||
"key": "port",
|
||||
"label": "Port number",
|
||||
"help": "The TCP port to connect to",
|
||||
"placeholder": "993",
|
||||
"required": true,
|
||||
"order": 3,
|
||||
"controlType": "textbox"
|
||||
},
|
||||
{
|
||||
"key": "username",
|
||||
"label": "User name",
|
||||
"help": "The name you login to you account with",
|
||||
"placeholder": "Your name",
|
||||
"required": true,
|
||||
"order": 4,
|
||||
"controlType": "textbox"
|
||||
},
|
||||
{
|
||||
"key": "password",
|
||||
"label": "Password",
|
||||
"help": "Your account password",
|
||||
"placeholder": "Password",
|
||||
"required": true,
|
||||
"order": 5,
|
||||
"controlType": "textbox"
|
||||
}]
|
||||
},
|
||||
"devDependencies": {
|
||||
"mocha": "^5.2.0"
|
||||
},
|
||||
"directories": {
|
||||
"test": "test"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://git.orca-central.de/jali/daskeyboard-applet--imap.git"
|
||||
},
|
||||
"keywords": [],
|
||||
"bugs": {
|
||||
"url": "https://git.orca-central.de/jali/daskeyboard-applet--imap/issues"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user