diff --git a/internal_packages/composer-templates/package.json b/internal_packages/composer-templates/package.json index 65a995a7b..2a1581242 100755 --- a/internal_packages/composer-templates/package.json +++ b/internal_packages/composer-templates/package.json @@ -4,7 +4,6 @@ "main": "./lib/main", "isOptional": true, - "isStarterPackage": true, "title": "Quick Replies", "description": "Create quick replies and templates you can use to pre-fill the composer - never type the same email again!", @@ -15,9 +14,6 @@ "engines": { "nylas": ">=0.3.0 <0.5.0" }, - "dependencies": { - "underscore": "^1.8" - }, "windowTypes": { "default": true, "composer": true diff --git a/internal_packages/composer-translate/package.json b/internal_packages/composer-translate/package.json index 46b6e7b9e..716397418 100755 --- a/internal_packages/composer-translate/package.json +++ b/internal_packages/composer-translate/package.json @@ -4,7 +4,6 @@ "main": "./lib/main", "isOptional": true, - "isStarterPackage": true, "title": "Translation", "description": "Translate your drafts in the composer into other languages using the Yandex Translation API.", @@ -21,8 +20,5 @@ "windowTypes": { "default": true, "composer": true - }, - "dependencies": { - "request": "^2.53" } } diff --git a/internal_packages/github-contact-card/package.json b/internal_packages/github-contact-card/package.json index 2b7ace5a3..16e70dba6 100644 --- a/internal_packages/github-contact-card/package.json +++ b/internal_packages/github-contact-card/package.json @@ -4,7 +4,6 @@ "main": "./lib/main", "isOptional": true, - "isStarterPackage": true, "title": "GitHub Sidebar Info", "description": "Extends the contact card in the sidebar to show public repos of the people you email.", @@ -19,8 +18,5 @@ "url": "https://github.com/bengotow/nylas-sidebar-github-profile" }, "dependencies": { - "reflux": "0.1.13", - "request": "^2.53", - "underscore": "^1.8" } } diff --git a/internal_packages/keybase/icon.png b/internal_packages/keybase/icon.png new file mode 100644 index 000000000..c8d8b2fa3 Binary files /dev/null and b/internal_packages/keybase/icon.png differ diff --git a/internal_packages/keybase/package.json b/internal_packages/keybase/package.json index 80a07ce8d..a918470a0 100755 --- a/internal_packages/keybase/package.json +++ b/internal_packages/keybase/package.json @@ -2,20 +2,19 @@ "name": "keybase", "main": "./lib/main", "version": "0.1.0", - "repository": { - "type": "git", - "url": "https://github.com/nylas/n1-keybase" - }, "engines": { "nylas": ">=0.4.10-4e3595b" }, + "isOptional": true, + + "title": "Keybase PGP Encryption", "description": "PGP encryption for N1 using Keybase for public key exchange.", + "icon": "./icon.png", + "dependencies": { - "kbpgp": "^2.0.52", - "request": "^2.69.0", - "underscore": "^1.8.3" + "kbpgp": "^2.0.52" }, - "license": "MIT", + "license": "GPL-3.0", "windowTypes": { "default": true, "composer": true diff --git a/internal_packages/message-view-on-github/package.json b/internal_packages/message-view-on-github/package.json index f54720ecc..742155de3 100644 --- a/internal_packages/message-view-on-github/package.json +++ b/internal_packages/message-view-on-github/package.json @@ -12,8 +12,5 @@ "engines": { "nylas": ">=0.3.0 <0.5.0" - }, - "dependencies": { - "underscore": "^1.8.3" } } diff --git a/internal_packages/onboarding/package.json b/internal_packages/onboarding/package.json index e65db1270..d861b77c3 100755 --- a/internal_packages/onboarding/package.json +++ b/internal_packages/onboarding/package.json @@ -9,7 +9,6 @@ "nylas": "*" }, "dependencies": { - "async": "^0.9" }, "windowTypes": { "onboarding": true diff --git a/internal_packages/personal-level-indicators/package.json b/internal_packages/personal-level-indicators/package.json index 91a7e00d3..5fe74be2e 100644 --- a/internal_packages/personal-level-indicators/package.json +++ b/internal_packages/personal-level-indicators/package.json @@ -15,6 +15,7 @@ "engines": { "nylas": ">=0.3.0 <0.5.0" }, - "dependencies": {}, + "dependencies": { + }, "license": "GPL-3.0" } diff --git a/internal_packages/phishing-detection/package.json b/internal_packages/phishing-detection/package.json index de57baf60..07767f6a2 100644 --- a/internal_packages/phishing-detection/package.json +++ b/internal_packages/phishing-detection/package.json @@ -17,7 +17,5 @@ "composer": true }, "dependencies": { - "request": "^2.53", - "underscore": "*" } } diff --git a/internal_packages/plugins/package.json b/internal_packages/plugins/package.json index 4bef0543b..236da34b7 100755 --- a/internal_packages/plugins/package.json +++ b/internal_packages/plugins/package.json @@ -9,6 +9,5 @@ "nylas": "*" }, "dependencies": { - "moment": "^2.8" } } diff --git a/src/browser/application.es6 b/src/browser/application.es6 index 36cfbed8e..1f4e8dfdd 100644 --- a/src/browser/application.es6 +++ b/src/browser/application.es6 @@ -93,6 +93,7 @@ export default class Application extends EventEmitter { 'N1-Personal-Level-Indicators': 'personal-level-indicators', 'N1-Phishing-Detection': 'phishing-detection', 'N1-Github-Contact-Card-Section': 'github-contact-card', + 'N1-Keybase': 'keybase', } const exampleOldNames = Object.keys(exampleNewNames); let examplesEnabled = [];