2017-11-03 01:26:08 +02:00
|
|
|
{
|
2017-11-13 19:51:46 +02:00
|
|
|
"name": "Joplin",
|
2019-04-02 18:27:52 +02:00
|
|
|
"version": "1.0.142",
|
2017-11-03 01:26:08 +02:00
|
|
|
"description": "Joplin for Desktop",
|
|
|
|
"main": "main.js",
|
|
|
|
"scripts": {
|
|
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
2017-11-13 19:21:49 +02:00
|
|
|
"pack": "node_modules/.bin/electron-builder --dir",
|
2019-02-24 19:26:46 +02:00
|
|
|
"dist": "node_modules/.bin/electron-builder",
|
2017-11-15 01:01:19 +02:00
|
|
|
"publish": "build -p always",
|
2019-03-03 02:51:54 +02:00
|
|
|
"postinstall": "node compile.js && node compile-package-info.js && node ../../Tools/copycss.js --copy-fonts && node electronRebuild.js",
|
2019-01-17 21:01:35 +02:00
|
|
|
"compile": "node compile.js && node compile-package-info.js && node ../../Tools/copycss.js --copy-fonts"
|
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",
|
2019-02-24 19:26:46 +02:00
|
|
|
"npmRebuild": false,
|
2018-02-06 00:20:31 +02:00
|
|
|
"extraResources": [
|
|
|
|
"build/icons/*"
|
|
|
|
],
|
2017-11-13 19:51:46 +02:00
|
|
|
"win": {
|
2019-02-25 01:46:05 +02:00
|
|
|
"rfc3161TimeStampServer": "http://sha256timestamp.ws.symantec.com/sha256/timestamp",
|
2018-04-23 21:50:29 +02:00
|
|
|
"icon": "../../Assets/Joplin.ico",
|
|
|
|
"target": [
|
|
|
|
{
|
|
|
|
"target": "nsis",
|
|
|
|
"arch": [
|
|
|
|
"x64",
|
|
|
|
"ia32"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"target": "portable",
|
|
|
|
"arch": [
|
|
|
|
"x64",
|
|
|
|
"ia32"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
2017-11-16 20:03:01 +02:00
|
|
|
},
|
2017-12-07 20:17:41 +02:00
|
|
|
"nsis": {
|
|
|
|
"oneClick": false,
|
|
|
|
"allowToChangeInstallationDirectory": true
|
|
|
|
},
|
2018-05-14 12:08:33 +02:00
|
|
|
"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": false
|
|
|
|
},
|
|
|
|
"linux": {
|
2018-02-04 20:31:13 +02:00
|
|
|
"asar": false,
|
2018-06-10 14:45:05 +02:00
|
|
|
"category": "Office",
|
2019-01-09 19:05:28 +02:00
|
|
|
"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": {
|
2018-06-09 21:00:26 +02:00
|
|
|
"ajv": "^6.5.0",
|
|
|
|
"app-builder-bin": "^1.9.11",
|
2017-11-04 17:42:20 +02:00
|
|
|
"babel-cli": "^6.26.0",
|
|
|
|
"babel-preset-react": "^6.24.1",
|
2019-02-24 19:26:46 +02:00
|
|
|
"electron": "4.0.5",
|
2019-02-15 02:29:48 +02:00
|
|
|
"electron-builder": "20.38.5",
|
|
|
|
"electron-rebuild": "^1.8.4"
|
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",
|
2018-12-06 00:11:40 +02:00
|
|
|
"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",
|
2018-02-07 21:02:07 +02:00
|
|
|
"async-mutex": "^0.1.3",
|
2018-01-25 21:01:14 +02:00
|
|
|
"base-64": "^0.1.0",
|
2019-03-12 23:41:13 +02:00
|
|
|
"chokidar": "^2.1.2",
|
2018-06-09 21:00:26 +02:00
|
|
|
"compare-versions": "^3.2.1",
|
2019-01-14 21:11:54 +02:00
|
|
|
"diacritics": "^1.3.0",
|
2017-11-08 19:51:55 +02:00
|
|
|
"electron-context-menu": "^0.9.1",
|
2018-04-23 21:50:29 +02:00
|
|
|
"electron-is-dev": "^0.3.0",
|
2017-11-14 20:02:58 +02:00
|
|
|
"electron-window-state": "^4.1.1",
|
2018-05-23 15:25:59 +02:00
|
|
|
"es6-promise-pool": "^2.5.0",
|
2018-06-09 21:00:26 +02:00
|
|
|
"follow-redirects": "^1.5.0",
|
|
|
|
"form-data": "^2.3.2",
|
2018-09-16 20:37:31 +02:00
|
|
|
"formatcoords": "^1.1.3",
|
2017-12-22 20:58:09 +02:00
|
|
|
"fs-extra": "^5.0.0",
|
2019-03-08 19:14:17 +02:00
|
|
|
"highlight.js": "^9.15.6",
|
2017-11-05 18:51:03 +02:00
|
|
|
"html-entities": "^1.2.1",
|
2018-05-23 15:25:59 +02:00
|
|
|
"image-type": "^3.0.0",
|
2019-01-20 17:26:43 +02:00
|
|
|
"joplin-turndown": "^4.0.11",
|
2018-06-09 21:00:26 +02:00
|
|
|
"joplin-turndown-plugin-gfm": "^1.0.7",
|
2017-11-11 19:36:47 +02:00
|
|
|
"jssha": "^2.3.1",
|
2018-11-14 00:42:06 +02:00
|
|
|
"katex": "^0.10.0",
|
2017-11-11 19:36:47 +02:00
|
|
|
"levenshtein": "^1.0.5",
|
2018-06-09 21:00:26 +02:00
|
|
|
"lodash": "^4.17.10",
|
2018-03-20 01:04:48 +02:00
|
|
|
"mark.js": "^8.11.1",
|
2018-06-09 21:00:26 +02:00
|
|
|
"markdown-it": "^8.4.1",
|
2019-04-02 18:14:48 +02:00
|
|
|
"markdown-it-abbr": "^1.0.4",
|
|
|
|
"markdown-it-anchor": "^5.0.2",
|
|
|
|
"markdown-it-deflist": "^2.0.3",
|
|
|
|
"markdown-it-emoji": "^1.4.0",
|
|
|
|
"markdown-it-footnote": "^3.0.1",
|
|
|
|
"markdown-it-ins": "^2.0.0",
|
2019-01-11 19:02:04 +02:00
|
|
|
"markdown-it-katex": "^2.0.3",
|
2019-04-02 18:14:48 +02:00
|
|
|
"markdown-it-mark": "^2.0.0",
|
|
|
|
"markdown-it-multimd-table": "^3.1.3",
|
|
|
|
"markdown-it-sub": "^1.0.0",
|
|
|
|
"markdown-it-sup": "^1.0.0",
|
|
|
|
"markdown-it-toc-done-right": "^3.0.1",
|
2017-11-07 23:11:14 +02:00
|
|
|
"md5": "^2.2.1",
|
2018-06-09 21:00:26 +02:00
|
|
|
"mime": "^2.3.1",
|
|
|
|
"moment": "^2.22.2",
|
2018-09-28 20:24:57 +02:00
|
|
|
"multiparty": "^4.2.1",
|
2017-11-04 15:23:15 +02:00
|
|
|
"node-fetch": "^1.7.3",
|
2018-06-09 21:00:26 +02:00
|
|
|
"node-notifier": "^5.2.1",
|
2017-11-04 13:26:49 +02:00
|
|
|
"promise": "^8.0.1",
|
2018-06-09 21:00:26 +02:00
|
|
|
"query-string": "^5.1.1",
|
|
|
|
"react": "^16.4.0",
|
2018-09-05 12:35:40 +02:00
|
|
|
"react-ace": "^6.1.4",
|
2018-06-09 21:00:26 +02:00
|
|
|
"react-datetime": "^2.14.0",
|
|
|
|
"react-dom": "^16.4.0",
|
|
|
|
"react-redux": "^5.0.7",
|
2018-05-23 15:25:59 +02:00
|
|
|
"read-chunk": "^2.1.0",
|
2018-05-16 15:16:14 +02:00
|
|
|
"readability-node": "^0.1.0",
|
2017-11-04 14:23:46 +02:00
|
|
|
"redux": "^3.7.2",
|
2018-05-25 14:30:27 +02:00
|
|
|
"server-destroy": "^1.0.1",
|
2017-12-22 20:58:09 +02:00
|
|
|
"smalltalk": "^2.5.1",
|
2017-11-04 13:26:49 +02:00
|
|
|
"sprintf-js": "^1.1.1",
|
2019-02-15 02:29:48 +02:00
|
|
|
"sqlite3": "^4.0.6",
|
2017-11-11 19:36:47 +02:00
|
|
|
"string-padding": "^1.0.2",
|
2018-06-09 21:00:26 +02:00
|
|
|
"string-to-stream": "^1.1.1",
|
2018-06-20 02:18:58 +02:00
|
|
|
"syswide-cas": "^5.1.0",
|
2018-06-09 21:00:26 +02:00
|
|
|
"tar": "^4.4.4",
|
2017-11-13 19:51:46 +02:00
|
|
|
"tcp-port-used": "^0.1.2",
|
2019-02-15 01:18:17 +02:00
|
|
|
"url-parse": "^1.4.3",
|
2018-06-09 21:00:26 +02:00
|
|
|
"uuid": "^3.2.1",
|
2018-05-01 20:05:14 +02:00
|
|
|
"valid-url": "^1.0.9",
|
2018-01-25 21:01:14 +02:00
|
|
|
"xml2js": "^0.4.19"
|
2017-11-03 01:26:08 +02:00
|
|
|
}
|
|
|
|
}
|