2017-11-03 01:26:08 +02:00
|
|
|
{
|
2020-11-07 17:59:37 +02:00
|
|
|
"name": "@joplin/app-desktop",
|
2020-11-19 23:02:03 +02:00
|
|
|
"version": "1.4.11",
|
2017-11-03 01:26:08 +02:00
|
|
|
"description": "Joplin for Desktop",
|
|
|
|
"main": "main.js",
|
2020-11-05 18:58:23 +02:00
|
|
|
"private": true,
|
2017-11-03 01:26:08 +02:00
|
|
|
"scripts": {
|
2019-02-24 19:26:46 +02:00
|
|
|
"dist": "node_modules/.bin/electron-builder",
|
2020-11-05 18:58:23 +02:00
|
|
|
"build": "gulp build",
|
2020-02-21 00:59:18 +02:00
|
|
|
"postinstall": "npm run build && gulp electronRebuild",
|
2020-11-05 18:58:23 +02:00
|
|
|
"tsc": "node node_modules/typescript/bin/tsc --project tsconfig.json",
|
|
|
|
"watch": "node node_modules/typescript/bin/tsc --watch --project tsconfig.json",
|
2020-11-13 19:09:28 +02:00
|
|
|
"start": "gulp build && electron . --env dev --log-level debug --no-welcome --open-dev-tools",
|
|
|
|
"test": "jest"
|
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",
|
2020-11-05 18:58:23 +02:00
|
|
|
"productName": "Joplin",
|
2019-02-24 19:26:46 +02:00
|
|
|
"npmRebuild": false,
|
2018-02-06 00:20:31 +02:00
|
|
|
"extraResources": [
|
2019-09-11 01:53:01 +02:00
|
|
|
"build/icons/*",
|
|
|
|
"build/images/*"
|
2018-02-06 00:20:31 +02:00
|
|
|
],
|
2020-07-03 23:46:20 +02:00
|
|
|
"afterAllArtifactBuild": "./generateSha512.js",
|
2020-07-14 16:32:49 +02:00
|
|
|
"asar": true,
|
|
|
|
"asarUnpack": "./node_modules/node-notifier/vendor/**",
|
2017-11-13 19:51:46 +02:00
|
|
|
"win": {
|
2020-11-05 23:05:52 +02:00
|
|
|
"rfc3161TimeStampServer": "http://timestamp.comodoca.com/rfc3161",
|
2020-04-10 19:19:17 +02:00
|
|
|
"icon": "../../Assets/ImageSources/Joplin.ico",
|
2018-04-23 21:50:29 +02:00
|
|
|
"target": [
|
|
|
|
{
|
|
|
|
"target": "nsis",
|
|
|
|
"arch": [
|
|
|
|
"x64",
|
|
|
|
"ia32"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"target": "portable",
|
|
|
|
"arch": [
|
|
|
|
"x64",
|
|
|
|
"ia32"
|
|
|
|
]
|
|
|
|
}
|
2020-05-10 16:01:53 +02:00
|
|
|
],
|
2020-05-10 17:51:15 +02:00
|
|
|
"extraFiles": [
|
|
|
|
{
|
|
|
|
"from": "build-win/Joplin.VisualElementsManifest.xml",
|
|
|
|
"to": "."
|
|
|
|
}
|
|
|
|
],
|
2020-05-10 16:01:53 +02:00
|
|
|
"extraResources": [
|
|
|
|
"build-win/icons/*"
|
2018-04-23 21:50:29 +02:00
|
|
|
]
|
2017-11-16 20:03:01 +02:00
|
|
|
},
|
2017-12-07 20:17:41 +02:00
|
|
|
"nsis": {
|
|
|
|
"oneClick": false,
|
2020-11-05 18:58:23 +02:00
|
|
|
"allowToChangeInstallationDirectory": true,
|
|
|
|
"differentialPackage": false
|
2017-12-07 20:17:41 +02:00
|
|
|
},
|
2018-05-14 12:08:33 +02:00
|
|
|
"portable": {
|
|
|
|
"artifactName": "${productName}Portable.${ext}"
|
|
|
|
},
|
2017-11-16 20:03:01 +02:00
|
|
|
"mac": {
|
2020-11-05 18:58:23 +02:00
|
|
|
"icon": "../../Assets/macOs.icns"
|
2017-11-17 00:33:45 +02:00
|
|
|
},
|
|
|
|
"linux": {
|
2020-11-05 21:53:53 +02:00
|
|
|
"icon": "../../Assets/LinuxIcons",
|
2018-06-10 14:45:05 +02:00
|
|
|
"category": "Office",
|
2019-01-09 19:05:28 +02:00
|
|
|
"desktop": {
|
|
|
|
"Icon": "joplin"
|
|
|
|
},
|
2020-11-05 18:58:23 +02:00
|
|
|
"target": "AppImage"
|
|
|
|
},
|
|
|
|
"dmg": {
|
|
|
|
"writeUpdateInfo": false
|
2017-11-13 19:51:46 +02:00
|
|
|
}
|
|
|
|
},
|
2017-11-03 01:26:08 +02:00
|
|
|
"homepage": "https://github.com/laurent22/joplin#readme",
|
|
|
|
"devDependencies": {
|
2020-11-13 19:09:28 +02:00
|
|
|
"@joplin/tools": "^1.0.9",
|
|
|
|
"@testing-library/react-hooks": "^3.4.2",
|
|
|
|
"@types/jest": "^26.0.15",
|
2020-11-05 18:58:23 +02:00
|
|
|
"@types/node": "^14.14.6",
|
|
|
|
"@types/react": "16.9.55",
|
|
|
|
"@types/react-redux": "^7.1.9",
|
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",
|
2020-11-19 23:01:19 +02:00
|
|
|
"electron": "^10.1.6",
|
|
|
|
"electron-builder": "22.9.1",
|
|
|
|
"electron-rebuild": "^2.3.2",
|
2020-03-23 02:47:25 +02:00
|
|
|
"glob": "^7.1.6",
|
2020-02-21 00:59:18 +02:00
|
|
|
"gulp": "^4.0.2",
|
2020-11-13 19:09:28 +02:00
|
|
|
"jest": "^26.6.3",
|
2020-07-03 23:46:20 +02:00
|
|
|
"js-sha512": "^0.8.0",
|
2020-11-13 19:09:28 +02:00
|
|
|
"react-test-renderer": "^16.14.0",
|
2020-11-05 18:58:23 +02:00
|
|
|
"typescript": "^4.0.5"
|
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": {
|
2020-05-17 16:34:42 +02:00
|
|
|
"@fortawesome/fontawesome-free": "^5.13.0",
|
2020-11-07 17:59:37 +02:00
|
|
|
"@joplin/lib": "^1.0.9",
|
|
|
|
"@joplin/renderer": "^1.0.17",
|
2020-11-13 19:09:28 +02:00
|
|
|
"@types/styled-components": "^5.1.4",
|
2018-02-07 21:02:07 +02:00
|
|
|
"async-mutex": "^0.1.3",
|
2020-08-02 12:33:59 +02:00
|
|
|
"codemirror": "^5.56.0",
|
2020-05-02 17:41:07 +02:00
|
|
|
"color": "^3.1.2",
|
2018-06-09 21:00:26 +02:00
|
|
|
"compare-versions": "^3.2.1",
|
2020-02-25 11:43:31 +02:00
|
|
|
"countable": "^3.0.1",
|
2020-09-15 15:01:07 +02:00
|
|
|
"debounce": "^1.2.0",
|
2019-10-02 20:05:30 +02:00
|
|
|
"electron-context-menu": "^0.15.0",
|
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-09-16 20:37:31 +02:00
|
|
|
"formatcoords": "^1.1.3",
|
2017-12-22 20:58:09 +02:00
|
|
|
"fs-extra": "^5.0.0",
|
2020-10-28 19:31:54 +02:00
|
|
|
"highlight.js": "^10.2.1",
|
2020-07-22 20:03:31 +02:00
|
|
|
"immer": "^7.0.5",
|
2020-11-05 18:58:23 +02:00
|
|
|
"keytar": "^7.0.0",
|
2018-03-20 01:04:48 +02:00
|
|
|
"mark.js": "^8.11.1",
|
2017-11-07 23:11:14 +02:00
|
|
|
"md5": "^2.2.1",
|
2018-06-09 21:00:26 +02:00
|
|
|
"moment": "^2.22.2",
|
2017-11-04 15:23:15 +02:00
|
|
|
"node-fetch": "^1.7.3",
|
2019-10-02 20:21:42 +02:00
|
|
|
"node-notifier": "^6.0.0",
|
2020-02-19 12:13:33 +02:00
|
|
|
"pretty-bytes": "^5.3.0",
|
2020-09-15 15:01:07 +02:00
|
|
|
"re-resizable": "^6.5.4",
|
2020-11-05 18:58:23 +02:00
|
|
|
"react": "16.13.1",
|
2018-06-09 21:00:26 +02:00
|
|
|
"react-datetime": "^2.14.0",
|
2020-11-05 18:58:23 +02:00
|
|
|
"react-dom": "16.9.0",
|
2018-06-09 21:00:26 +02:00
|
|
|
"react-redux": "^5.0.7",
|
2019-06-08 00:33:06 +02:00
|
|
|
"react-select": "^2.4.3",
|
2020-11-19 14:34:49 +02:00
|
|
|
"react-toggle-button": "^2.2.0",
|
2019-05-06 22:35:29 +02:00
|
|
|
"react-tooltip": "^3.10.0",
|
2017-11-04 14:23:46 +02:00
|
|
|
"redux": "^3.7.2",
|
2019-09-11 01:53:01 +02:00
|
|
|
"reselect": "^4.0.0",
|
2020-09-15 15:01:07 +02:00
|
|
|
"roboto-fontface": "^0.10.0",
|
2017-12-22 20:58:09 +02:00
|
|
|
"smalltalk": "^2.5.1",
|
2020-09-15 15:01:07 +02:00
|
|
|
"styled-components": "^5.1.1",
|
|
|
|
"styled-system": "^5.1.5",
|
2020-03-10 01:24:57 +02:00
|
|
|
"taboverride": "^4.0.3",
|
2020-11-05 18:58:23 +02:00
|
|
|
"tinymce": "^5.2.0"
|
2017-11-03 01:26:08 +02:00
|
|
|
}
|
|
|
|
}
|