mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-03-10 06:56:09 +08:00
fix(keybase): Disable by default, remove duplicate dependencies
This commit is contained in:
parent
6215fbb200
commit
a69a56d0b7
11 changed files with 10 additions and 28 deletions
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
BIN
internal_packages/keybase/icon.png
Normal file
BIN
internal_packages/keybase/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 54 KiB |
|
@ -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
|
||||
|
|
|
@ -12,8 +12,5 @@
|
|||
|
||||
"engines": {
|
||||
"nylas": ">=0.3.0 <0.5.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"underscore": "^1.8.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
"nylas": "*"
|
||||
},
|
||||
"dependencies": {
|
||||
"async": "^0.9"
|
||||
},
|
||||
"windowTypes": {
|
||||
"onboarding": true
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
"engines": {
|
||||
"nylas": ">=0.3.0 <0.5.0"
|
||||
},
|
||||
"dependencies": {},
|
||||
"dependencies": {
|
||||
},
|
||||
"license": "GPL-3.0"
|
||||
}
|
||||
|
|
|
@ -17,7 +17,5 @@
|
|||
"composer": true
|
||||
},
|
||||
"dependencies": {
|
||||
"request": "^2.53",
|
||||
"underscore": "*"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,5 @@
|
|||
"nylas": "*"
|
||||
},
|
||||
"dependencies": {
|
||||
"moment": "^2.8"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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 = [];
|
||||
|
|
Loading…
Reference in a new issue