1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00
joplin/ElectronClient/package.json

178 lines
4.7 KiB
JSON
Raw Normal View History

2017-11-03 01:26:08 +02:00
{
2017-11-13 19:51:46 +02:00
"name": "Joplin",
2020-03-30 19:03:36 +02:00
"version": "1.0.197",
2017-11-03 01:26:08 +02:00
"description": "Joplin for Desktop",
"main": "main.js",
"scripts": {
"dist": "node_modules/.bin/electron-builder",
"build": "patch-package --patch-dir ../patches && gulp build",
"postinstall": "npm run build && gulp electronRebuild",
"start": "gulp build && electron . --env dev --log-level debug --no-welcome --open-dev-tools"
2017-11-03 01:26:08 +02:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/laurent22/joplin.git"
},
"author": "Laurent Cozic",
"license": "MIT",
"bugs": {
"url": "https://github.com/laurent22/joplin/issues"
},
2017-11-13 19:51:46 +02:00
"build": {
"appId": "net.cozic.joplin-desktop",
"npmRebuild": false,
2018-02-06 00:20:31 +02:00
"extraResources": [
"build/icons/*",
"build/images/*"
2018-02-06 00:20:31 +02:00
],
2017-11-13 19:51:46 +02:00
"win": {
"asar": true,
2019-02-25 01:46:05 +02:00
"rfc3161TimeStampServer": "http://sha256timestamp.ws.symantec.com/sha256/timestamp",
"icon": "../../Assets/Joplin.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
},
{
"target": "portable",
"arch": [
"x64",
"ia32"
]
}
]
2017-11-16 20:03:01 +02:00
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"portable": {
"artifactName": "${productName}Portable.${ext}"
},
2017-11-16 20:03:01 +02:00
"mac": {
2017-11-17 00:33:45 +02:00
"icon": "../../Assets/macOs.icns",
"asar": true
2017-11-17 00:33:45 +02:00
},
"linux": {
"asar": true,
2018-06-10 14:45:05 +02:00
"category": "Office",
"desktop": {
"Icon": "joplin"
},
2018-06-10 14:45:05 +02:00
"target": "AppImage"
2017-11-13 19:51:46 +02:00
}
},
2017-11-03 01:26:08 +02:00
"homepage": "https://github.com/laurent22/joplin#readme",
"devDependencies": {
"ajv": "^6.5.0",
"app-builder-bin": "^1.9.11",
"babel-cli": "^6.26.0",
"babel-preset-react": "^6.24.1",
Desktop: Update Electron to 7.1.12 (#2500) This is only a minor bump but several issues have been fixed since 7.1.9: - Fixed an issue where sending complex objects over IPC could in some cases cause the renderer process to be terminated. electron/electron#21922 - Fixed crash with Date.toLocaleString for invalid locale and locale of the format aa@BB. electron/electron#21969 - Fixed flash plugin not working. electron/electron#22109 - Fixed issue where renderers could crash during GC when using the contextBridge module. electron/electron#22112 - Fixed netLog.stopLogging returning undefined instead of the path to the log. electron/electron#21988 - Fixed an edge case in checkbox logic on Windows. electron/electron#21860 - Fixed an issue where window.print() only worked once on a single BrowserWindow. electron/electron#21911 - Fixed an issue where the credits set in About Panel credits were not dark mode aware on macOS. electron/electron#21924 - Fixed error thrown when importing powerMonitor on Linux before app's 'ready' event. electron/electron#21941 - Fixed fuzzy font rendering when hot-plugging displays on macOS Catalina. electron/electron#21872 - Fixed BrowserWindow.setFocusable(true) not working on Windows. electron/electron#21855 - Fixed set-cookie header not passed in net module. electron/electron#21770 - Fixed an issue where custom stream protocols would sometimes not complete responses when the data stream ended. electron/electron#21758 - Fixed crash when restoring minimized hidden window on Windows. electron/electron#21820 - Fixed issue where non-zero size pixels in CSS styles could be rounded down to zero size pixels. electron/electron#21857 - Fixed memory leak when using javascript generator functions. electron/electron#21773 - Fixed potential hang when sending synchronous IPC messages on process shutdown. electron/electron#21776
2020-02-13 02:49:52 +02:00
"electron": "^7.1.12",
"electron-builder": "22.3.2",
"electron-rebuild": "^1.8.8",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"patch-package": "^6.2.0"
2017-11-03 01:26:08 +02:00
},
2017-11-13 19:21:49 +02:00
"optionalDependencies": {
2017-11-16 20:45:01 +02:00
"7zip-bin-linux": "^1.0.1",
"7zip-bin-mac": "^1.0.1",
2017-11-16 21:21:23 +02:00
"7zip-bin-win": "^2.1.1"
2017-11-13 19:21:49 +02:00
},
2017-11-03 01:26:08 +02:00
"dependencies": {
2017-11-03 20:01:24 +02:00
"app-module-path": "^2.2.0",
"async-mutex": "^0.1.3",
"base-64": "^0.1.0",
"base64-stream": "^1.0.0",
"chokidar": "^3.0.0",
"clean-html": "^1.5.0",
"compare-versions": "^3.2.1",
"countable": "^3.0.1",
"diacritics": "^1.3.0",
"diff-match-patch": "^1.0.4",
"electron-context-menu": "^0.15.0",
"electron-is-dev": "^0.3.0",
2017-11-14 20:02:58 +02:00
"electron-window-state": "^4.1.1",
"es6-promise-pool": "^2.5.0",
"file-uri-to-path": "^1.0.0",
"follow-redirects": "^1.5.0",
"font-awesome-filetypes": "^2.1.0",
"form-data": "^2.3.2",
"formatcoords": "^1.1.3",
2017-12-22 20:58:09 +02:00
"fs-extra": "^5.0.0",
"highlight.js": "^9.17.1",
2017-11-05 18:51:03 +02:00
"html-entities": "^1.2.1",
"html-minifier": "^4.0.0",
"htmlparser2": "^4.1.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-11-11 19:36:47 +02:00
"jssha": "^2.3.1",
"katex": "^0.11.1",
2017-11-11 19:36:47 +02:00
"levenshtein": "^1.0.5",
"lodash": "^4.17.15",
"mark.js": "^8.11.1",
"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",
2017-11-07 23:11:14 +02:00
"md5": "^2.2.1",
"md5-file": "^4.0.0",
"memory-cache": "^0.2.0",
"mermaid": "^8.4.6",
"moment": "^2.22.2",
2018-09-28 20:24:57 +02:00
"multiparty": "^4.2.1",
"mustache": "^3.0.1",
"node-fetch": "^1.7.3",
"node-notifier": "^6.0.0",
"pretty-bytes": "^5.3.0",
"promise": "^8.0.1",
"query-string": "^5.1.1",
2020-02-17 22:55:09 +02:00
"react": "^16.9.0",
"react-ace": "^6.1.4",
"react-datetime": "^2.14.0",
2020-02-17 22:55:09 +02:00
"react-dom": "^16.9.0",
"react-redux": "^5.0.7",
"react-select": "^2.4.3",
"react-tooltip": "^3.10.0",
"read-chunk": "^2.1.0",
2018-05-16 15:16:14 +02:00
"readability-node": "^0.1.0",
"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",
"reselect": "^4.0.0",
"sax": "^1.2.4",
"server-destroy": "^1.0.1",
2017-12-22 20:58:09 +02:00
"smalltalk": "^2.5.1",
"sprintf-js": "^1.1.1",
2019-12-17 13:08:55 +02:00
"sqlite3": "^4.1.1",
2017-11-11 19:36:47 +02:00
"string-padding": "^1.0.2",
"string-to-stream": "^1.1.1",
"syswide-cas": "^5.1.0",
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
"taboverride": "^4.0.3",
"tar": "^4.4.4",
2017-11-13 19:51:46 +02:00
"tcp-port-used": "^0.1.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
"tinymce": "^5.2.0",
"uglifycss": "0.0.29",
"url-parse": "^1.4.3",
"uslug": "^1.0.4",
"uuid": "^3.2.1",
"valid-url": "^1.0.9",
"xml2js": "^0.4.19"
2017-11-03 01:26:08 +02:00
}
}