2017-11-02 23:26:08 +00:00
|
|
|
{
|
2017-11-13 17:51:46 +00:00
|
|
|
"name": "Joplin",
|
2020-10-31 13:02:14 +00:00
|
|
|
"version": "1.3.11",
|
2017-11-02 23:26:08 +00:00
|
|
|
"description": "Joplin for Desktop",
|
|
|
|
"main": "main.js",
|
|
|
|
"scripts": {
|
2019-02-24 17:26:46 +00:00
|
|
|
"dist": "node_modules/.bin/electron-builder",
|
2020-10-16 15:26:19 +00:00
|
|
|
"build": "patch-package --patch-dir ../patches/shared && patch-package --patch-dir ../patches/node && gulp build",
|
2020-02-20 22:59:18 +00:00
|
|
|
"postinstall": "npm run build && gulp electronRebuild",
|
2020-03-23 00:47:25 +00:00
|
|
|
"start": "gulp build && electron . --env dev --log-level debug --no-welcome --open-dev-tools"
|
2017-11-02 23:26:08 +00: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 17:51:46 +00:00
|
|
|
"build": {
|
|
|
|
"appId": "net.cozic.joplin-desktop",
|
2019-02-24 17:26:46 +00:00
|
|
|
"npmRebuild": false,
|
2018-02-05 22:20:31 +00:00
|
|
|
"extraResources": [
|
2019-09-10 23:53:01 +00:00
|
|
|
"build/icons/*",
|
|
|
|
"build/images/*"
|
2018-02-05 22:20:31 +00:00
|
|
|
],
|
2020-07-03 21:46:20 +00:00
|
|
|
"afterAllArtifactBuild": "./generateSha512.js",
|
2020-07-14 14:32:49 +00:00
|
|
|
"asar": true,
|
|
|
|
"asarUnpack": "./node_modules/node-notifier/vendor/**",
|
2017-11-13 17:51:46 +00:00
|
|
|
"win": {
|
2019-02-24 23:46:05 +00:00
|
|
|
"rfc3161TimeStampServer": "http://sha256timestamp.ws.symantec.com/sha256/timestamp",
|
2020-04-10 17:19:17 +00:00
|
|
|
"icon": "../../Assets/ImageSources/Joplin.ico",
|
2018-04-23 19:50:29 +00:00
|
|
|
"target": [
|
|
|
|
{
|
|
|
|
"target": "nsis",
|
|
|
|
"arch": [
|
|
|
|
"x64",
|
|
|
|
"ia32"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"target": "portable",
|
|
|
|
"arch": [
|
|
|
|
"x64",
|
|
|
|
"ia32"
|
|
|
|
]
|
|
|
|
}
|
2020-05-10 14:01:53 +00:00
|
|
|
],
|
2020-05-10 15:51:15 +00:00
|
|
|
"extraFiles": [
|
|
|
|
{
|
|
|
|
"from": "build-win/Joplin.VisualElementsManifest.xml",
|
|
|
|
"to": "."
|
2020-09-06 12:07:00 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"from": "lib/sql-extensions/spellfix.dll",
|
|
|
|
"to": "usr/lib/spellfix.dll"
|
2020-05-10 15:51:15 +00:00
|
|
|
}
|
|
|
|
],
|
2020-05-10 14:01:53 +00:00
|
|
|
"extraResources": [
|
|
|
|
"build-win/icons/*"
|
2018-04-23 19:50:29 +00:00
|
|
|
]
|
2017-11-16 18:03:01 +00:00
|
|
|
},
|
2017-12-07 18:17:41 +00:00
|
|
|
"nsis": {
|
|
|
|
"oneClick": false,
|
|
|
|
"allowToChangeInstallationDirectory": true
|
|
|
|
},
|
2018-05-14 10:08:33 +00:00
|
|
|
"portable": {
|
|
|
|
"artifactName": "${productName}Portable.${ext}"
|
|
|
|
},
|
2017-11-16 18:03:01 +00:00
|
|
|
"mac": {
|
2020-09-06 12:07:00 +00:00
|
|
|
"icon": "../../Assets/macOs.icns",
|
|
|
|
"extraFiles": [
|
|
|
|
{
|
|
|
|
"from": "lib/sql-extensions/spellfix.dylib",
|
|
|
|
"to": "usr/lib/spellfix.dylib"
|
|
|
|
}
|
|
|
|
]
|
2017-11-16 22:33:45 +00:00
|
|
|
},
|
|
|
|
"linux": {
|
2020-09-11 23:45:44 +00:00
|
|
|
"icon": "../Assets/LinuxIcons",
|
2018-06-10 12:45:05 +00:00
|
|
|
"category": "Office",
|
2019-01-09 17:05:28 +00:00
|
|
|
"desktop": {
|
|
|
|
"Icon": "joplin"
|
|
|
|
},
|
2020-09-06 12:07:00 +00:00
|
|
|
"target": "AppImage",
|
|
|
|
"extraFiles": [
|
|
|
|
{
|
|
|
|
"from": "lib/sql-extensions/spellfix.so",
|
|
|
|
"to": "usr/lib/spellfix.so"
|
|
|
|
}
|
|
|
|
]
|
2017-11-13 17:51:46 +00:00
|
|
|
}
|
|
|
|
},
|
2017-11-02 23:26:08 +00:00
|
|
|
"homepage": "https://github.com/laurent22/joplin#readme",
|
|
|
|
"devDependencies": {
|
2020-08-02 11:28:50 +00:00
|
|
|
"@types/jasmine": "^3.5.11",
|
2018-06-09 19:00:26 +00:00
|
|
|
"ajv": "^6.5.0",
|
|
|
|
"app-builder-bin": "^1.9.11",
|
2017-11-04 15:42:20 +00:00
|
|
|
"babel-cli": "^6.26.0",
|
|
|
|
"babel-preset-react": "^6.24.1",
|
2020-05-10 22:11:46 +00:00
|
|
|
"electron": "^8.2.5",
|
2020-02-07 23:20:59 +00:00
|
|
|
"electron-builder": "22.3.2",
|
2020-05-10 22:11:46 +00:00
|
|
|
"electron-rebuild": "^1.10.1",
|
2020-03-23 00:47:25 +00:00
|
|
|
"glob": "^7.1.6",
|
2020-02-20 22:59:18 +00:00
|
|
|
"gulp": "^4.0.2",
|
2020-07-03 21:46:20 +00:00
|
|
|
"js-sha512": "^0.8.0",
|
2020-08-01 17:56:26 +00:00
|
|
|
"patch-package": "^6.2.2"
|
2017-11-02 23:26:08 +00:00
|
|
|
},
|
2017-11-13 17:21:49 +00:00
|
|
|
"optionalDependencies": {
|
2017-11-16 18:45:01 +00:00
|
|
|
"7zip-bin-linux": "^1.0.1",
|
2018-12-05 22:11:40 +00:00
|
|
|
"7zip-bin-mac": "^1.0.1",
|
2017-11-16 19:21:23 +00:00
|
|
|
"7zip-bin-win": "^2.1.1"
|
2017-11-13 17:21:49 +00:00
|
|
|
},
|
2017-11-02 23:26:08 +00:00
|
|
|
"dependencies": {
|
2020-05-17 14:34:42 +00:00
|
|
|
"@fortawesome/fontawesome-free": "^5.13.0",
|
2017-11-03 18:01:24 +00:00
|
|
|
"app-module-path": "^2.2.0",
|
2018-02-07 19:02:07 +00:00
|
|
|
"async-mutex": "^0.1.3",
|
2020-07-15 09:22:55 +00:00
|
|
|
"aws-sdk": "^2.594.0",
|
2018-01-25 19:01:14 +00:00
|
|
|
"base-64": "^0.1.0",
|
2020-02-10 21:50:45 +00:00
|
|
|
"base64-stream": "^1.0.0",
|
2020-10-09 17:35:46 +00:00
|
|
|
"builtin-modules": "^3.1.0",
|
2019-05-02 15:00:17 +00:00
|
|
|
"chokidar": "^3.0.0",
|
2019-09-23 21:18:30 +00:00
|
|
|
"clean-html": "^1.5.0",
|
2020-08-02 10:33:59 +00:00
|
|
|
"codemirror": "^5.56.0",
|
2020-05-02 15:41:07 +00:00
|
|
|
"color": "^3.1.2",
|
2018-06-09 19:00:26 +00:00
|
|
|
"compare-versions": "^3.2.1",
|
2020-02-25 09:43:31 +00:00
|
|
|
"countable": "^3.0.1",
|
2020-09-15 13:01:07 +00:00
|
|
|
"debounce": "^1.2.0",
|
2019-01-14 19:11:54 +00:00
|
|
|
"diacritics": "^1.3.0",
|
2019-05-06 20:35:29 +00:00
|
|
|
"diff-match-patch": "^1.0.4",
|
2019-10-02 18:05:30 +00:00
|
|
|
"electron-context-menu": "^0.15.0",
|
2018-04-23 19:50:29 +00:00
|
|
|
"electron-is-dev": "^0.3.0",
|
2017-11-14 18:02:58 +00:00
|
|
|
"electron-window-state": "^4.1.1",
|
2018-05-23 13:25:59 +00:00
|
|
|
"es6-promise-pool": "^2.5.0",
|
2019-05-10 00:06:06 +00:00
|
|
|
"file-uri-to-path": "^1.0.0",
|
2018-06-09 19:00:26 +00:00
|
|
|
"follow-redirects": "^1.5.0",
|
2020-02-10 21:50:45 +00:00
|
|
|
"font-awesome-filetypes": "^2.1.0",
|
2018-06-09 19:00:26 +00:00
|
|
|
"form-data": "^2.3.2",
|
2018-09-16 18:37:31 +00:00
|
|
|
"formatcoords": "^1.1.3",
|
2017-12-22 18:58:09 +00:00
|
|
|
"fs-extra": "^5.0.0",
|
2020-10-28 17:31:54 +00:00
|
|
|
"highlight.js": "^10.2.1",
|
2017-11-05 16:51:03 +00:00
|
|
|
"html-entities": "^1.2.1",
|
2019-07-14 15:00:02 +00:00
|
|
|
"html-minifier": "^4.0.0",
|
2020-03-06 00:54:21 +00:00
|
|
|
"htmlparser2": "^4.1.0",
|
2018-05-23 13:25:59 +00:00
|
|
|
"image-type": "^3.0.0",
|
2020-07-22 18:03:31 +00:00
|
|
|
"immer": "^7.0.5",
|
2020-10-29 10:16:31 +00:00
|
|
|
"joplin-turndown": "^4.0.30",
|
2020-01-08 18:35:41 +00:00
|
|
|
"joplin-turndown-plugin-gfm": "^1.0.12",
|
2020-02-10 21:50:45 +00:00
|
|
|
"json-stringify-safe": "^5.0.1",
|
2017-11-11 17:36:47 +00:00
|
|
|
"jssha": "^2.3.1",
|
2020-08-02 11:24:03 +00:00
|
|
|
"katex": "^0.12.0",
|
2020-06-03 16:07:50 +00:00
|
|
|
"keytar": "^5.4.0",
|
2017-11-11 17:36:47 +00:00
|
|
|
"levenshtein": "^1.0.5",
|
2020-08-01 17:56:26 +00:00
|
|
|
"lodash": "^4.17.19",
|
2018-03-19 23:04:48 +00:00
|
|
|
"mark.js": "^8.11.1",
|
2020-02-07 23:20:59 +00:00
|
|
|
"markdown-it": "^10.0.0",
|
2020-02-10 21:50:45 +00:00
|
|
|
"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 21:11:14 +00:00
|
|
|
"md5": "^2.2.1",
|
2020-02-10 21:50:45 +00:00
|
|
|
"md5-file": "^4.0.0",
|
2020-10-09 20:42:16 +00:00
|
|
|
"mermaid": "^8.8.1",
|
2018-06-09 19:00:26 +00:00
|
|
|
"moment": "^2.22.2",
|
2018-09-28 18:24:57 +00:00
|
|
|
"multiparty": "^4.2.1",
|
2019-07-20 21:13:10 +00:00
|
|
|
"mustache": "^3.0.1",
|
2020-10-09 17:35:46 +00:00
|
|
|
"nanoid": "^3.1.12",
|
2017-11-04 13:23:15 +00:00
|
|
|
"node-fetch": "^1.7.3",
|
2019-10-02 18:21:42 +00:00
|
|
|
"node-notifier": "^6.0.0",
|
2020-02-19 10:13:33 +00:00
|
|
|
"pretty-bytes": "^5.3.0",
|
2017-11-04 11:26:49 +00:00
|
|
|
"promise": "^8.0.1",
|
2018-06-09 19:00:26 +00:00
|
|
|
"query-string": "^5.1.1",
|
2020-10-09 17:35:46 +00:00
|
|
|
"re-reselect": "^4.0.0",
|
2020-09-15 13:01:07 +00:00
|
|
|
"re-resizable": "^6.5.4",
|
2020-02-17 20:55:09 +00:00
|
|
|
"react": "^16.9.0",
|
2018-06-09 19:00:26 +00:00
|
|
|
"react-datetime": "^2.14.0",
|
2020-02-17 20:55:09 +00:00
|
|
|
"react-dom": "^16.9.0",
|
2018-06-09 19:00:26 +00:00
|
|
|
"react-redux": "^5.0.7",
|
2019-06-07 22:33:06 +00:00
|
|
|
"react-select": "^2.4.3",
|
2019-05-06 20:35:29 +00:00
|
|
|
"react-tooltip": "^3.10.0",
|
2018-05-23 13:25:59 +00:00
|
|
|
"read-chunk": "^2.1.0",
|
2018-05-16 13:16:14 +00:00
|
|
|
"readability-node": "^0.1.0",
|
2017-11-04 12:23:46 +00:00
|
|
|
"redux": "^3.7.2",
|
2020-03-09 23:24:57 +00:00
|
|
|
"relative": "^3.0.2",
|
2019-09-10 23:53:01 +00:00
|
|
|
"reselect": "^4.0.0",
|
2020-09-15 13:01:07 +00:00
|
|
|
"roboto-fontface": "^0.10.0",
|
2020-02-10 21:50:45 +00:00
|
|
|
"sax": "^1.2.4",
|
2018-05-25 12:30:27 +00:00
|
|
|
"server-destroy": "^1.0.1",
|
2017-12-22 18:58:09 +00:00
|
|
|
"smalltalk": "^2.5.1",
|
2017-11-04 11:26:49 +00:00
|
|
|
"sprintf-js": "^1.1.1",
|
2019-12-17 11:08:55 +00:00
|
|
|
"sqlite3": "^4.1.1",
|
2017-11-11 17:36:47 +00:00
|
|
|
"string-padding": "^1.0.2",
|
2018-06-09 19:00:26 +00:00
|
|
|
"string-to-stream": "^1.1.1",
|
2020-10-09 17:35:46 +00:00
|
|
|
"striptags": "^3.1.1",
|
2020-09-15 13:01:07 +00:00
|
|
|
"styled-components": "^5.1.1",
|
|
|
|
"styled-system": "^5.1.5",
|
2018-06-20 00:18:58 +00:00
|
|
|
"syswide-cas": "^5.1.0",
|
2020-03-09 23:24:57 +00:00
|
|
|
"taboverride": "^4.0.3",
|
2018-06-09 19:00:26 +00:00
|
|
|
"tar": "^4.4.4",
|
2017-11-13 17:51:46 +00:00
|
|
|
"tcp-port-used": "^0.1.2",
|
2020-03-09 23:24:57 +00:00
|
|
|
"tinymce": "^5.2.0",
|
2019-07-17 21:48:13 +00:00
|
|
|
"uglifycss": "0.0.29",
|
2019-02-14 23:18:17 +00:00
|
|
|
"url-parse": "^1.4.3",
|
2020-10-16 21:55:48 +00:00
|
|
|
"uslug": "git+https://github.com/laurent22/uslug.git#emoji-support",
|
2018-06-09 19:00:26 +00:00
|
|
|
"uuid": "^3.2.1",
|
2018-05-01 18:05:14 +00:00
|
|
|
"valid-url": "^1.0.9",
|
2020-02-10 21:50:45 +00:00
|
|
|
"xml2js": "^0.4.19"
|
2017-11-02 23:26:08 +00:00
|
|
|
}
|
|
|
|
}
|