Mailspring/internal_packages/composer-markdown/package.json
Juan Tejada 477e5f8c2c fix(markdown): Fix textarea bug (use our fork of simplemde)
- Textarea bug prevented us from typing in the markdown editor, almost
consistently. Seems to be a chrome bug
- Stop using textarea and use contenteditable instead via codemirror's
inputStyle option. Had to use our fork of simplemde to be able to pass that option
- Disable spellchecker also
2016-09-01 19:43:10 -07:00

26 lines
517 B
JSON

{
"name": "composer-markdown",
"version": "0.1.0",
"main": "./lib/main",
"title": "Markdown (Experimental)",
"description": "Write emails using Markdown!",
"license": "GPL-3.0",
"icon": "./icon.png",
"engines": {
"nylas": "*"
},
"isOptional": true,
"repository": {
"type": "git",
"url": ""
},
"windowTypes": {
"default": true,
"composer": true
},
"dependencies": {
"marked": "^0.3",
"simplemde": "jstejada/simplemde-markdown-editor#input-style-support"
}
}