2017-11-03 01:26:08 +02:00
|
|
|
{
|
2020-11-07 17:59:37 +02:00
|
|
|
"name": "@joplin/app-desktop",
|
2024-10-12 00:05:38 +02:00
|
|
|
"version": "3.1.18",
|
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": {
|
2024-01-26 22:19:28 +02:00
|
|
|
"dist": "yarn electronRebuild && npx electron-builder",
|
2020-11-05 18:58:23 +02:00
|
|
|
"build": "gulp build",
|
2023-02-05 18:51:47 +02:00
|
|
|
"electronBuilder": "gulp electronBuilder",
|
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",
|
2024-02-09 13:55:29 +02:00
|
|
|
"start": "gulp before-start && electron . --env dev --log-level debug --open-dev-tools --no-welcome",
|
2020-11-20 18:04:47 +02:00
|
|
|
"test": "jest",
|
2023-10-13 16:32:10 +02:00
|
|
|
"test-ui": "playwright test",
|
|
|
|
"test-ci": "yarn test && sh ./integration-tests/run-ci.sh",
|
2024-09-14 23:16:42 +02:00
|
|
|
"modifyReleaseAssets": "node tools/modifyReleaseAssets.js"
|
2017-11-03 01:26:08 +02:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/laurent22/joplin.git"
|
|
|
|
},
|
|
|
|
"author": "Laurent Cozic",
|
2022-12-21 12:00:31 +02:00
|
|
|
"license": "AGPL-3.0-or-later",
|
2017-11-03 01:26:08 +02:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/laurent22/joplin/issues"
|
|
|
|
},
|
2017-11-13 19:51:46 +02:00
|
|
|
"build": {
|
|
|
|
"appId": "net.cozic.joplin-desktop",
|
2023-05-16 11:25:45 +02:00
|
|
|
"compression": "normal",
|
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/**",
|
2023-12-11 15:58:45 +02:00
|
|
|
"build/defaultPlugins/**",
|
2023-12-13 21:24:58 +02:00
|
|
|
"build/pdf.worker.min.js",
|
|
|
|
"build/tesseract.js/**",
|
|
|
|
"build/tesseract.js-core/**",
|
2023-12-11 15:58:45 +02:00
|
|
|
"build/7zip/**"
|
2018-02-06 00:20:31 +02:00
|
|
|
],
|
2024-08-31 16:42:07 +02:00
|
|
|
"afterAllArtifactBuild": "./afterAllArtifactBuild.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,
|
2024-08-15 16:59:18 +02:00
|
|
|
"allowToChangeInstallationDirectory": 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",
|
2024-08-15 16:59:18 +02:00
|
|
|
"target": [
|
|
|
|
{
|
|
|
|
"target": "dmg",
|
|
|
|
"arch": [
|
|
|
|
"x64"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"target": "zip",
|
|
|
|
"arch": [
|
|
|
|
"x64"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2020-11-29 19:15:42 +02:00
|
|
|
"hardenedRuntime": true,
|
2023-12-29 23:13:15 +02:00
|
|
|
"notarize": false,
|
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": {
|
2022-12-31 01:21:29 +02:00
|
|
|
"Icon": "joplin",
|
2021-10-16 11:07:41 +02:00
|
|
|
"MimeType": "x-scheme-handler/joplin;"
|
2019-01-09 19:05:28 +02:00
|
|
|
},
|
2020-11-05 18:58:23 +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": {
|
2024-09-02 14:04:32 +02:00
|
|
|
"7zip-bin": "5.2.0",
|
2024-10-01 04:49:27 +02:00
|
|
|
"@electron/rebuild": "3.6.0",
|
2024-08-09 12:47:43 +02:00
|
|
|
"@joplin/default-plugins": "~3.1",
|
|
|
|
"@joplin/tools": "~3.1",
|
2024-09-07 21:23:22 +02:00
|
|
|
"@playwright/test": "1.44.1",
|
2022-11-05 16:47:55 +02:00
|
|
|
"@testing-library/react-hooks": "8.0.1",
|
2024-10-01 04:19:50 +02:00
|
|
|
"@types/jest": "29.5.12",
|
2024-09-20 19:52:37 +02:00
|
|
|
"@types/node": "18.19.39",
|
2024-08-31 20:04:01 +02:00
|
|
|
"@types/react": "18.3.3",
|
2024-08-31 17:28:44 +02:00
|
|
|
"@types/react-dom": "18.3.0",
|
2024-01-07 11:04:15 +02:00
|
|
|
"@types/react-redux": "7.1.33",
|
2023-11-30 21:03:49 +02:00
|
|
|
"@types/styled-components": "5.1.32",
|
2023-12-13 21:24:58 +02:00
|
|
|
"@types/tesseract.js": "2.0.0",
|
2024-09-17 08:36:53 +02:00
|
|
|
"axios": "^1.7.7",
|
2024-08-15 17:00:46 +02:00
|
|
|
"electron": "29.4.5",
|
2024-03-14 20:39:02 +02:00
|
|
|
"electron-builder": "24.13.3",
|
2024-10-11 05:01:00 +02:00
|
|
|
"glob": "10.4.5",
|
2022-11-05 16:47:55 +02:00
|
|
|
"gulp": "4.0.2",
|
2023-11-01 12:48:09 +02:00
|
|
|
"jest": "29.7.0",
|
|
|
|
"jest-environment-jsdom": "29.7.0",
|
2024-05-27 09:56:05 +02:00
|
|
|
"js-sha512": "0.9.0",
|
2024-05-06 17:08:24 +02:00
|
|
|
"nan": "2.19.0",
|
2024-08-31 17:28:44 +02:00
|
|
|
"react-test-renderer": "18.3.1",
|
2024-10-01 04:19:50 +02:00
|
|
|
"ts-jest": "29.1.5",
|
2023-12-31 02:16:08 +02:00
|
|
|
"ts-node": "10.9.2",
|
2024-10-01 04:19:50 +02:00
|
|
|
"typescript": "5.4.5"
|
2017-11-03 01:26:08 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-10-01 04:49:27 +02:00
|
|
|
"@electron/notarize": "2.3.2",
|
2024-03-14 20:39:02 +02:00
|
|
|
"@electron/remote": "2.1.2",
|
2022-11-05 15:09:41 +02:00
|
|
|
"@fortawesome/fontawesome-free": "5.15.4",
|
2022-11-05 16:27:35 +02:00
|
|
|
"@joeattardi/emoji-button": "4.6.4",
|
2024-08-09 12:47:43 +02:00
|
|
|
"@joplin/editor": "~3.1",
|
|
|
|
"@joplin/lib": "~3.1",
|
|
|
|
"@joplin/renderer": "~3.1",
|
|
|
|
"@joplin/utils": "~3.1",
|
2024-10-01 04:49:27 +02:00
|
|
|
"@sentry/electron": "4.24.0",
|
2023-11-27 21:14:28 +02:00
|
|
|
"@types/mustache": "4.2.5",
|
2024-09-01 22:11:21 +02:00
|
|
|
"async-mutex": "0.5.0",
|
2022-11-07 12:11:33 +02:00
|
|
|
"codemirror": "5.65.9",
|
2022-11-05 15:09:41 +02:00
|
|
|
"color": "3.2.1",
|
2023-09-27 11:28:20 +02:00
|
|
|
"compare-versions": "6.1.0",
|
2022-11-05 15:09:41 +02:00
|
|
|
"countable": "3.0.1",
|
|
|
|
"debounce": "1.2.1",
|
2024-07-28 13:09:30 +02:00
|
|
|
"electron-updater": "6.2.1",
|
2022-11-05 15:09:41 +02:00
|
|
|
"electron-window-state": "5.0.3",
|
|
|
|
"formatcoords": "1.1.3",
|
2024-01-08 13:53:28 +02:00
|
|
|
"fs-extra": "11.2.0",
|
2023-11-18 12:53:36 +02:00
|
|
|
"highlight.js": "11.9.0",
|
2022-11-05 15:09:41 +02:00
|
|
|
"immer": "7.0.15",
|
2022-11-07 20:43:02 +02:00
|
|
|
"keytar": "7.9.0",
|
2022-11-05 15:09:41 +02:00
|
|
|
"mark.js": "8.11.1",
|
|
|
|
"md5": "2.3.0",
|
2024-02-09 14:14:30 +02:00
|
|
|
"moment": "2.30.1",
|
2023-08-21 17:01:20 +02:00
|
|
|
"mustache": "4.2.0",
|
2022-11-15 11:10:41 +02:00
|
|
|
"node-fetch": "2.6.7",
|
2022-11-12 14:36:27 +02:00
|
|
|
"node-notifier": "10.0.1",
|
2022-11-05 15:09:41 +02:00
|
|
|
"node-rsa": "1.1.1",
|
2024-03-02 16:25:27 +02:00
|
|
|
"notyf": "3.10.0",
|
2023-12-13 21:24:58 +02:00
|
|
|
"pdfjs-dist": "3.11.174",
|
2022-11-13 13:37:05 +02:00
|
|
|
"pretty-bytes": "5.6.0",
|
2024-09-01 22:33:05 +02:00
|
|
|
"re-resizable": "6.9.17",
|
2024-08-31 17:28:44 +02:00
|
|
|
"react": "18.3.1",
|
2022-11-13 01:42:23 +02:00
|
|
|
"react-datetime": "3.2.0",
|
2024-08-31 17:28:44 +02:00
|
|
|
"react-dom": "18.3.1",
|
2023-10-21 09:07:33 +02:00
|
|
|
"react-redux": "8.1.3",
|
2023-12-20 21:11:01 +02:00
|
|
|
"react-select": "5.8.0",
|
2022-11-05 15:09:41 +02:00
|
|
|
"react-toggle-button": "2.2.0",
|
2022-11-24 00:43:51 +02:00
|
|
|
"react-tooltip": "4.5.1",
|
2023-02-09 02:24:35 +02:00
|
|
|
"redux": "4.2.1",
|
2023-05-07 04:10:24 +02:00
|
|
|
"reselect": "4.1.8",
|
2022-11-05 15:09:41 +02:00
|
|
|
"roboto-fontface": "0.10.0",
|
2023-01-11 16:00:36 +02:00
|
|
|
"smalltalk": "2.5.1",
|
2024-02-10 17:23:33 +02:00
|
|
|
"sqlite3": "5.1.6",
|
2023-06-16 06:20:55 +02:00
|
|
|
"styled-components": "5.3.11",
|
2021-12-20 17:08:43 +02:00
|
|
|
"styled-system": "5.1.5",
|
2022-11-05 15:09:41 +02:00
|
|
|
"taboverride": "4.0.3",
|
2024-09-08 03:50:24 +02:00
|
|
|
"tesseract.js": "5.1.0",
|
2022-11-16 11:37:30 +02:00
|
|
|
"tinymce": "5.10.6"
|
2017-11-03 01:26:08 +02:00
|
|
|
}
|
|
|
|
}
|