2017-11-03 01:26:08 +02:00
|
|
|
{
|
2020-11-07 17:59:37 +02:00
|
|
|
"name": "@joplin/app-desktop",
|
2022-11-01 17:36:43 +02:00
|
|
|
"version": "2.9.12",
|
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": {
|
2021-12-20 17:08:43 +02:00
|
|
|
"dist": "yarn run electronRebuild && npx electron-builder",
|
2020-11-05 18:58:23 +02:00
|
|
|
"build": "gulp build",
|
2021-12-20 17:08:43 +02:00
|
|
|
"postinstall": "yarn run build",
|
2020-12-05 14:40:14 +02:00
|
|
|
"electronRebuild": "gulp electronRebuild",
|
2021-12-20 17:08:43 +02:00
|
|
|
"tsc": "tsc --project tsconfig.json",
|
2021-12-21 13:43:12 +02:00
|
|
|
"watch": "tsc --watch --preserveWatchOutput --project tsconfig.json",
|
2021-07-25 14:15:56 +02:00
|
|
|
"start": "gulp build && electron . --env dev --log-level debug --no-welcome --open-dev-tools",
|
2020-11-20 18:04:47 +02:00
|
|
|
"test": "jest",
|
2021-12-20 17:08:43 +02:00
|
|
|
"test-ci": "yarn test"
|
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,
|
2020-11-29 19:15:42 +02:00
|
|
|
"afterSign": "./tools/notarizeMacApp.js",
|
2018-02-06 00:20:31 +02:00
|
|
|
"extraResources": [
|
2021-12-23 13:04:09 +02:00
|
|
|
"build/icons/**",
|
2022-09-01 12:44:33 +02:00
|
|
|
"build/images/**",
|
|
|
|
"build/defaultPlugins/**"
|
2018-02-06 00:20:31 +02:00
|
|
|
],
|
2020-07-03 23:46:20 +02:00
|
|
|
"afterAllArtifactBuild": "./generateSha512.js",
|
2020-11-28 14:02:26 +02:00
|
|
|
"asar": true,
|
2020-07-14 16:32:49 +02:00
|
|
|
"asarUnpack": "./node_modules/node-notifier/vendor/**",
|
2017-11-13 19:51:46 +02:00
|
|
|
"win": {
|
2021-12-17 13:11:45 +02:00
|
|
|
"rfc3161TimeStampServer": "http://timestamp.digicert.com",
|
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,
|
2022-03-15 12:06:00 +02:00
|
|
|
"allowToChangeInstallationDirectory": false,
|
2020-11-05 18:58:23 +02:00
|
|
|
"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-27 14:40:43 +02:00
|
|
|
"icon": "../../Assets/macOs.icns",
|
2020-11-29 19:15:42 +02:00
|
|
|
"target": "dmg",
|
|
|
|
"hardenedRuntime": true,
|
2021-10-16 11:07:41 +02:00
|
|
|
"entitlements": "./build-mac/entitlements.mac.inherit.plist",
|
|
|
|
"extendInfo": {
|
|
|
|
"CFBundleURLTypes": [
|
|
|
|
{
|
2021-10-17 18:45:10 +02:00
|
|
|
"CFBundleURLSchemes": [
|
|
|
|
"joplin"
|
|
|
|
],
|
2021-10-16 11:07:41 +02:00
|
|
|
"CFBundleTypeRole": "Editor",
|
|
|
|
"CFBundleURLName": "org.joplinapp.x-callback-url"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
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": {
|
2021-10-16 11:07:41 +02:00
|
|
|
"Icon": "joplin",
|
|
|
|
"MimeType": "x-scheme-handler/joplin;"
|
2019-01-09 19:05:28 +02:00
|
|
|
},
|
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": {
|
2022-07-11 11:07:21 +02:00
|
|
|
"@joplin/tools": "~2.9",
|
2020-11-13 19:09:28 +02:00
|
|
|
"@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",
|
2022-11-02 17:01:12 +02:00
|
|
|
"@types/react": "16.14.34",
|
2022-11-02 13:27:47 +02:00
|
|
|
"@types/react-redux": "7.1.24",
|
2021-12-20 17:08:43 +02:00
|
|
|
"@types/styled-components": "5.1.4",
|
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",
|
2022-11-03 00:13:32 +02:00
|
|
|
"electron": "19.1.4",
|
2022-06-07 19:23:16 +02:00
|
|
|
"electron-builder": "^23.0.3",
|
|
|
|
"electron-notarize": "^1.2.1",
|
|
|
|
"electron-rebuild": "^3.2.7",
|
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",
|
2022-11-03 10:40:25 +02:00
|
|
|
"nan": "2.17.0",
|
2020-11-13 19:09:28 +02:00
|
|
|
"react-test-renderer": "^16.14.0",
|
2021-12-20 17:08:43 +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": {
|
2021-10-01 20:35:27 +02:00
|
|
|
"@electron/remote": "^2.0.1",
|
2020-05-17 16:34:42 +02:00
|
|
|
"@fortawesome/fontawesome-free": "^5.13.0",
|
2021-11-15 19:19:51 +02:00
|
|
|
"@joeattardi/emoji-button": "^4.6.0",
|
2022-07-11 11:07:21 +02:00
|
|
|
"@joplin/lib": "~2.9",
|
2022-08-04 11:12:22 +02:00
|
|
|
"@joplin/pdf-viewer": "~2.9",
|
2022-07-11 11:07:21 +02:00
|
|
|
"@joplin/renderer": "~2.9",
|
2022-11-02 18:32:55 +02:00
|
|
|
"async-mutex": "^0.4.0",
|
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",
|
2022-10-15 23:53:45 +02:00
|
|
|
"electron-window-state": "^5.0.3",
|
2018-09-16 20:37:31 +02:00
|
|
|
"formatcoords": "^1.1.3",
|
2021-12-28 12:43:15 +02:00
|
|
|
"fs-extra": "10.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",
|
2020-11-28 14:02:26 +02:00
|
|
|
"node-notifier": "^8.0.0",
|
2021-10-03 17:00:49 +02:00
|
|
|
"node-rsa": "^1.1.1",
|
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",
|
2021-12-20 17:08:43 +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",
|
2021-12-20 17:08:43 +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",
|
2021-10-01 20:35:27 +02:00
|
|
|
"sqlite3": "^5.0.2",
|
2021-12-20 17:08:43 +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
|
|
|
}
|
|
|
|
}
|