1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/CliClient/package.json

121 lines
3.2 KiB
JSON
Raw Normal View History

2017-06-06 00:00:02 +02:00
{
2017-07-12 22:39:47 +02:00
"name": "joplin",
2017-10-21 20:07:56 +02:00
"description": "Joplin CLI Client",
2017-06-29 22:52:52 +02:00
"license": "MIT",
2017-10-21 20:07:56 +02:00
"author": "Laurent Cozic",
"scripts": {
"test": "gulp buildTests -L && jasmine --config=tests/support/jasmine.json",
2020-03-07 03:19:41 +02:00
"postinstall": "npm run build && patch-package --patch-dir ../patches",
"build": "gulp build",
"start": "gulp build -L && node 'build/main.js' --stack-trace-enabled --log-level debug --env dev"
},
2017-10-21 20:07:56 +02:00
"bugs": {
"url": "https://github.com/laurent22/joplin/issues"
2017-10-21 20:07:56 +02:00
},
2017-06-29 22:52:52 +02:00
"repository": {
"type": "git",
"url": "https://github.com/laurent22/joplin"
},
2017-10-21 20:07:56 +02:00
"copyright": {
"title": "Joplin CLI",
"years": [
2016,
2018-01-03 21:20:16 +02:00
2017,
2019-01-15 21:10:27 +02:00
2018,
2019,
2020
2017-10-21 20:07:56 +02:00
],
"owner": "Laurent Cozic"
},
2020-04-10 20:32:20 +02:00
"version": "1.0.163",
2017-06-25 18:30:44 +02:00
"bin": {
2017-08-04 22:15:55 +02:00
"joplin": "./main.js"
2017-06-25 18:30:44 +02:00
},
2017-10-21 20:07:56 +02:00
"engines": {
"node": ">=10.0.0"
2017-10-21 20:07:56 +02:00
},
2017-06-09 00:24:40 +02:00
"dependencies": {
"app-module-path": "^2.2.0",
"async-mutex": "^0.1.3",
"base-64": "^0.1.0",
"base64-stream": "^1.0.0",
"clean-html": "^1.5.0",
2018-01-09 21:56:38 +02:00
"compare-version": "^0.1.2",
"diacritics": "^1.3.0",
"diff-match-patch": "^1.0.4",
"es6-promise-pool": "^2.5.0",
"file-uri-to-path": "^1.0.0",
"follow-redirects": "^1.2.4",
"font-awesome-filetypes": "^2.1.0",
2017-06-09 00:24:40 +02:00
"form-data": "^2.1.4",
2017-12-22 20:58:09 +02:00
"fs-extra": "^5.0.0",
"highlight.js": "^9.17.1",
2017-11-07 01:56:33 +02:00
"html-entities": "^1.2.1",
"html-minifier": "^3.5.15",
"htmlparser2": "^4.1.0",
"image-data-uri": "^2.0.0",
"image-type": "^3.0.0",
"joplin-turndown": "^4.0.27",
"joplin-turndown-plugin-gfm": "^1.0.12",
"json-stringify-safe": "^5.0.1",
2017-06-09 00:24:40 +02:00
"jssha": "^2.3.0",
"katex": "^0.11.1",
2017-07-12 22:39:47 +02:00
"levenshtein": "^1.0.5",
"markdown-it": "^10.0.0",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^5.2.5",
"markdown-it-deflist": "^2.0.3",
"markdown-it-emoji": "^1.4.0",
"markdown-it-expand-tabs": "^1.0.13",
"markdown-it-footnote": "^3.0.2",
"markdown-it-ins": "^3.0.0",
"markdown-it-mark": "^3.0.0",
"markdown-it-multimd-table": "^4.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-toc-done-right": "^4.1.0",
"md5": "^2.2.1",
"md5-file": "^4.0.0",
"memory-cache": "^0.2.0",
"mime": "^2.0.3",
"moment": "^2.24.0",
"multiparty": "^4.2.1",
2017-11-20 21:01:19 +02:00
"node-emoji": "^1.8.1",
2017-06-09 00:24:40 +02:00
"node-fetch": "^1.7.1",
"node-persist": "^2.1.0",
"patch-package": "^6.2.0",
2017-06-09 00:24:40 +02:00
"promise": "^7.1.1",
2017-07-17 21:37:59 +02:00
"proper-lockfile": "^2.0.1",
2017-06-15 23:17:56 +02:00
"query-string": "4.3.4",
"read-chunk": "^2.1.0",
2017-10-07 22:04:53 +02:00
"redux": "^3.7.2",
Desktop: Resolves #176: Added experimental WYSIWYG editor (#2556) * Trying to get TuiEditor to work * Tests with TinyMCE * Fixed build * Improved asset loading * Added support for Joplin source blocks * Added support for Joplin source blocks * Better integration * Make sure noteDidUpdate event is always dispatched at the right time * Minor tweaks * Fixed tests * Add support for checkboxes * Minor refactoring * Added support for file attachments * Add support for fenced code blocks * Fix new line issue on code block * Added support for Fountain scripts * Refactoring * Better handling of saving and loading notes * Fix saving and loading ntoes * Handle multi-note selection and fixed new note creation issue * Fixed newline issue in test * Fixed newline issue in test * Improve saving and loading * Improve saving and loading note * Removed undeeded prop * Fixed issue when new note being saved is incorrectly reloaded * Refactoring and improve saving of note when unmounting component * Fixed TypeScript error * Small changes * Improved further handling of saving and loading notes * Handle provisional notes and fixed various saving and loading bugs * Adding back support for HTML notes * Added support for HTML notes * Better handling of editable nodes * Preserve image HTML tag when the size is set * Handle switching between editor when the note has note finished saving * Handle templates * Handle templates * Handle loading note that is being saved * Handle note being reloaded via sync * Clean up * Clean up and improved logging * Fixed TS error * Fixed a few issues * Fixed test * Logging * Various improvements * Add blockquote support * Moved CWD operation to shim * Removed deleted files * Added support for Joplin commands
2020-03-10 01:24:57 +02:00
"relative": "^3.0.2",
"request": "^2.88.0",
"sax": "^1.2.4",
2017-06-22 23:52:27 +02:00
"server-destroy": "^1.0.1",
"sharp": "^0.23.2",
2017-06-11 23:11:14 +02:00
"sprintf-js": "^1.1.1",
"sqlite3": "^4.1.1",
2017-07-12 22:39:47 +02:00
"string-padding": "^1.0.2",
2017-06-09 00:24:40 +02:00
"string-to-stream": "^1.1.0",
"strip-ansi": "^4.0.0",
2018-06-28 21:48:39 +02:00
"syswide-cas": "^5.2.0",
"tar": "^4.4.10",
2017-06-22 21:44:38 +02:00
"tcp-port-used": "^0.1.2",
"terminal-kit": "^1.30.0",
2018-05-09 13:39:27 +02:00
"tkwidgets": "^0.5.26",
"url-parse": "^1.4.7",
"uslug": "^1.0.4",
2017-06-11 23:11:14 +02:00
"uuid": "^3.0.1",
"valid-url": "^1.0.9",
2017-10-05 19:17:56 +02:00
"word-wrap": "^1.2.3",
2018-01-21 19:01:37 +02:00
"xml2js": "^0.4.19",
2020-03-07 03:19:41 +02:00
"yargs-parser": "^7.0.0"
2017-06-09 00:24:40 +02:00
},
"devDependencies": {
2020-03-07 03:19:41 +02:00
"gulp": "^4.0.2",
"jasmine": "^3.5.0",
"temp": "^0.9.1"
2017-06-09 00:24:40 +02:00
}
2017-06-06 00:00:02 +02:00
}