2017-11-02 23:26:08 +00:00
|
|
|
{
|
2020-11-07 15:59:37 +00:00
|
|
|
"name": "@joplin/app-desktop",
|
2023-11-26 11:38:28 +00:00
|
|
|
"version": "2.13.7",
|
2017-11-02 23:26:08 +00:00
|
|
|
"description": "Joplin for Desktop",
|
|
|
|
"main": "main.js",
|
2020-11-05 16:58:23 +00:00
|
|
|
"private": true,
|
2017-11-02 23:26:08 +00:00
|
|
|
"scripts": {
|
2023-02-05 19:10:17 +00:00
|
|
|
"dist": "yarn run electronRebuild && npx electron-builder",
|
2020-11-05 16:58:23 +00:00
|
|
|
"build": "gulp build",
|
2021-12-20 15:08:43 +00:00
|
|
|
"postinstall": "yarn run build",
|
2023-02-05 16:51:47 +00:00
|
|
|
"electronBuilder": "gulp electronBuilder",
|
2020-12-05 12:40:14 +00:00
|
|
|
"electronRebuild": "gulp electronRebuild",
|
2021-12-20 15:08:43 +00:00
|
|
|
"tsc": "tsc --project tsconfig.json",
|
2021-12-21 11:43:12 +00:00
|
|
|
"watch": "tsc --watch --preserveWatchOutput --project tsconfig.json",
|
2023-05-10 11:18:59 +00:00
|
|
|
"start": "gulp build && electron . --env dev --log-level debug --open-dev-tools",
|
2020-11-20 16:04:47 +00:00
|
|
|
"test": "jest",
|
2023-10-13 14:32:10 +00:00
|
|
|
"test-ui": "playwright test",
|
|
|
|
"test-ci": "yarn test && sh ./integration-tests/run-ci.sh",
|
2023-08-27 10:26:03 +00:00
|
|
|
"renameReleaseAssets": "node tools/renameReleaseAssets.js"
|
2017-11-02 23:26:08 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/laurent22/joplin.git"
|
|
|
|
},
|
|
|
|
"author": "Laurent Cozic",
|
2022-12-21 10:00:31 +00:00
|
|
|
"license": "AGPL-3.0-or-later",
|
2017-11-02 23:26:08 +00:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/laurent22/joplin/issues"
|
|
|
|
},
|
2017-11-13 17:51:46 +00:00
|
|
|
"build": {
|
|
|
|
"appId": "net.cozic.joplin-desktop",
|
2023-05-16 09:25:45 +00:00
|
|
|
"compression": "normal",
|
2020-11-05 16:58:23 +00:00
|
|
|
"productName": "Joplin",
|
2019-02-24 17:26:46 +00:00
|
|
|
"npmRebuild": false,
|
2020-11-29 17:15:42 +00:00
|
|
|
"afterSign": "./tools/notarizeMacApp.js",
|
2018-02-05 22:20:31 +00:00
|
|
|
"extraResources": [
|
2021-12-23 11:04:09 +00:00
|
|
|
"build/icons/**",
|
2022-09-01 10:44:33 +00:00
|
|
|
"build/images/**",
|
|
|
|
"build/defaultPlugins/**"
|
2018-02-05 22:20:31 +00:00
|
|
|
],
|
2020-07-03 21:46:20 +00:00
|
|
|
"afterAllArtifactBuild": "./generateSha512.js",
|
2020-11-28 12:02:26 +00:00
|
|
|
"asar": true,
|
2020-07-14 14:32:49 +00:00
|
|
|
"asarUnpack": "./node_modules/node-notifier/vendor/**",
|
2017-11-13 17:51:46 +00:00
|
|
|
"win": {
|
2021-12-17 11:11:45 +00:00
|
|
|
"rfc3161TimeStampServer": "http://timestamp.digicert.com",
|
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-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,
|
2022-03-15 10:06:00 +00:00
|
|
|
"allowToChangeInstallationDirectory": false,
|
2020-11-05 16:58:23 +00:00
|
|
|
"differentialPackage": false
|
2017-12-07 18:17:41 +00:00
|
|
|
},
|
2018-05-14 10:08:33 +00:00
|
|
|
"portable": {
|
|
|
|
"artifactName": "${productName}Portable.${ext}"
|
|
|
|
},
|
2017-11-16 18:03:01 +00:00
|
|
|
"mac": {
|
2020-11-27 12:40:43 +00:00
|
|
|
"icon": "../../Assets/macOs.icns",
|
2023-09-14 21:22:24 +00:00
|
|
|
"target": {
|
|
|
|
"target": "dmg",
|
|
|
|
"arch": [
|
|
|
|
"x64"
|
|
|
|
]
|
|
|
|
},
|
2020-11-29 17:15:42 +00:00
|
|
|
"hardenedRuntime": true,
|
2021-10-16 09:07:41 +00:00
|
|
|
"entitlements": "./build-mac/entitlements.mac.inherit.plist",
|
|
|
|
"extendInfo": {
|
|
|
|
"CFBundleURLTypes": [
|
|
|
|
{
|
2021-10-17 16:45:10 +00:00
|
|
|
"CFBundleURLSchemes": [
|
|
|
|
"joplin"
|
|
|
|
],
|
2021-10-16 09:07:41 +00:00
|
|
|
"CFBundleTypeRole": "Editor",
|
|
|
|
"CFBundleURLName": "org.joplinapp.x-callback-url"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2017-11-16 22:33:45 +00:00
|
|
|
},
|
|
|
|
"linux": {
|
2020-11-05 19:53:53 +00:00
|
|
|
"icon": "../../Assets/LinuxIcons",
|
2018-06-10 12:45:05 +00:00
|
|
|
"category": "Office",
|
2019-01-09 17:05:28 +00:00
|
|
|
"desktop": {
|
2022-12-30 23:21:29 +00:00
|
|
|
"Icon": "joplin",
|
2021-10-16 09:07:41 +00:00
|
|
|
"MimeType": "x-scheme-handler/joplin;"
|
2019-01-09 17:05:28 +00:00
|
|
|
},
|
2020-11-05 16:58:23 +00:00
|
|
|
"target": "AppImage"
|
|
|
|
},
|
|
|
|
"dmg": {
|
|
|
|
"writeUpdateInfo": false
|
2017-11-13 17:51:46 +00:00
|
|
|
}
|
|
|
|
},
|
2017-11-02 23:26:08 +00:00
|
|
|
"homepage": "https://github.com/laurent22/joplin#readme",
|
|
|
|
"devDependencies": {
|
2023-09-04 17:59:05 +00:00
|
|
|
"@electron/rebuild": "3.3.0",
|
2023-09-13 08:44:04 +00:00
|
|
|
"@joplin/tools": "~2.13",
|
2023-11-22 19:13:25 +00:00
|
|
|
"@playwright/test": "1.39.0",
|
2022-11-05 14:47:55 +00:00
|
|
|
"@testing-library/react-hooks": "8.0.1",
|
2023-11-01 10:48:09 +00:00
|
|
|
"@types/jest": "29.5.5",
|
2023-11-20 14:11:58 +00:00
|
|
|
"@types/node": "18.18.8",
|
2023-11-26 12:52:14 +00:00
|
|
|
"@types/react": "18.2.36",
|
2023-11-27 06:38:40 +00:00
|
|
|
"@types/react-redux": "7.1.29",
|
2023-11-08 20:32:10 +00:00
|
|
|
"@types/styled-components": "5.1.29",
|
2023-11-09 19:23:53 +00:00
|
|
|
"electron": "26.5.0",
|
2023-11-01 03:32:57 +00:00
|
|
|
"electron-builder": "24.6.4",
|
2023-10-15 17:51:37 +00:00
|
|
|
"glob": "10.3.10",
|
2022-11-05 14:47:55 +00:00
|
|
|
"gulp": "4.0.2",
|
2023-11-01 10:48:09 +00:00
|
|
|
"jest": "29.7.0",
|
|
|
|
"jest-environment-jsdom": "29.7.0",
|
2022-11-05 14:47:55 +00:00
|
|
|
"js-sha512": "0.8.0",
|
2023-10-24 09:46:52 +00:00
|
|
|
"nan": "2.18.0",
|
2022-11-14 22:37:49 +00:00
|
|
|
"react-test-renderer": "18.2.0",
|
2023-11-01 10:48:09 +00:00
|
|
|
"typescript": "5.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": {
|
2023-09-13 19:08:31 +00:00
|
|
|
"@electron/notarize": "2.1.0",
|
2023-11-01 03:32:57 +00:00
|
|
|
"@electron/remote": "2.0.12",
|
2022-11-05 13:09:41 +00:00
|
|
|
"@fortawesome/fontawesome-free": "5.15.4",
|
2022-11-05 14:27:35 +00:00
|
|
|
"@joeattardi/emoji-button": "4.6.4",
|
2023-09-21 08:12:40 +00:00
|
|
|
"@joplin/editor": "~2.13",
|
2023-09-13 08:44:04 +00:00
|
|
|
"@joplin/lib": "~2.13",
|
|
|
|
"@joplin/renderer": "~2.13",
|
|
|
|
"@joplin/utils": "~2.13",
|
2023-11-27 19:14:28 +00:00
|
|
|
"@types/mustache": "4.2.5",
|
2022-11-05 13:09:41 +00:00
|
|
|
"async-mutex": "0.4.0",
|
2022-11-07 10:11:33 +00:00
|
|
|
"codemirror": "5.65.9",
|
2022-11-05 13:09:41 +00:00
|
|
|
"color": "3.2.1",
|
2023-09-27 09:28:20 +00:00
|
|
|
"compare-versions": "6.1.0",
|
2022-11-05 13:09:41 +00:00
|
|
|
"countable": "3.0.1",
|
|
|
|
"debounce": "1.2.1",
|
|
|
|
"electron-window-state": "5.0.3",
|
|
|
|
"formatcoords": "1.1.3",
|
2023-03-30 20:11:29 +00:00
|
|
|
"fs-extra": "11.1.1",
|
2023-11-18 10:53:36 +00:00
|
|
|
"highlight.js": "11.9.0",
|
2022-11-05 13:09:41 +00:00
|
|
|
"immer": "7.0.15",
|
2022-11-07 18:43:02 +00:00
|
|
|
"keytar": "7.9.0",
|
2022-11-05 13:09:41 +00:00
|
|
|
"mark.js": "8.11.1",
|
|
|
|
"md5": "2.3.0",
|
2022-11-06 12:37:47 +00:00
|
|
|
"moment": "2.29.4",
|
2023-08-21 15:01:20 +00:00
|
|
|
"mustache": "4.2.0",
|
2022-11-15 09:10:41 +00:00
|
|
|
"node-fetch": "2.6.7",
|
2022-11-12 12:36:27 +00:00
|
|
|
"node-notifier": "10.0.1",
|
2022-11-05 13:09:41 +00:00
|
|
|
"node-rsa": "1.1.1",
|
2022-11-13 11:37:05 +00:00
|
|
|
"pretty-bytes": "5.6.0",
|
2023-08-31 03:14:11 +00:00
|
|
|
"re-resizable": "6.9.11",
|
2022-11-14 22:37:49 +00:00
|
|
|
"react": "18.2.0",
|
2022-11-12 23:42:23 +00:00
|
|
|
"react-datetime": "3.2.0",
|
2022-11-14 22:37:49 +00:00
|
|
|
"react-dom": "18.2.0",
|
2023-10-21 07:07:33 +00:00
|
|
|
"react-redux": "8.1.3",
|
2023-10-22 13:53:37 +00:00
|
|
|
"react-select": "5.7.7",
|
2022-11-05 13:09:41 +00:00
|
|
|
"react-toggle-button": "2.2.0",
|
2022-11-23 22:43:51 +00:00
|
|
|
"react-tooltip": "4.5.1",
|
2023-02-09 00:24:35 +00:00
|
|
|
"redux": "4.2.1",
|
2023-05-07 02:10:24 +00:00
|
|
|
"reselect": "4.1.8",
|
2022-11-05 13:09:41 +00:00
|
|
|
"roboto-fontface": "0.10.0",
|
2023-01-11 14:00:36 +00:00
|
|
|
"smalltalk": "2.5.1",
|
2023-03-25 14:27:19 +00:00
|
|
|
"sqlite3": "5.1.6",
|
2023-06-16 04:20:55 +00:00
|
|
|
"styled-components": "5.3.11",
|
2021-12-20 15:08:43 +00:00
|
|
|
"styled-system": "5.1.5",
|
2022-11-05 13:09:41 +00:00
|
|
|
"taboverride": "4.0.3",
|
2022-11-16 09:37:30 +00:00
|
|
|
"tinymce": "5.10.6"
|
2017-11-02 23:26:08 +00:00
|
|
|
}
|
|
|
|
}
|