1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00
joplin/packages/app-desktop/package.json

207 lines
5.5 KiB
JSON
Raw Normal View History

2017-11-03 01:26:08 +02:00
{
"name": "@joplin/app-desktop",
2024-09-17 10:37:02 +02:00
"version": "3.1.15",
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": {
"dist": "yarn electronRebuild && npx electron-builder",
2020-11-05 18:58:23 +02:00
"build": "gulp build",
"electronBuilder": "gulp electronBuilder",
"electronRebuild": "gulp electronRebuild",
"tsc": "tsc --project tsconfig.json",
"watch": "tsc --watch --preserveWatchOutput --project tsconfig.json",
"start": "gulp before-start && electron . --env dev --log-level debug --open-dev-tools --no-welcome",
"test": "jest",
"test-ui": "playwright test",
"test-ci": "yarn test && sh ./integration-tests/run-ci.sh",
"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",
"compression": "normal",
2020-11-05 18:58:23 +02:00
"productName": "Joplin",
"npmRebuild": false,
2020-11-29 19:15:42 +02:00
"afterSign": "./tools/notarizeMacApp.js",
2018-02-06 00:20:31 +02:00
"extraResources": [
"build/icons/**",
"build/images/**",
"build/defaultPlugins/**",
2023-12-13 21:24:58 +02:00
"build/pdf.worker.min.js",
"build/tesseract.js/**",
"build/tesseract.js-core/**",
"build/7zip/**"
2018-02-06 00:20:31 +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",
"icon": "../../Assets/ImageSources/Joplin.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
},
{
"target": "portable",
"arch": [
"x64",
"ia32"
]
}
],
"extraFiles": [
{
"from": "build-win/Joplin.VisualElementsManifest.xml",
"to": "."
}
],
"extraResources": [
"build-win/icons/*"
]
2017-11-16 20:03:01 +02:00
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": false
},
"portable": {
"artifactName": "${productName}Portable.${ext}"
},
2017-11-16 20:03:01 +02:00
"mac": {
"icon": "../../Assets/macOs.icns",
"target": [
{
"target": "dmg",
"arch": [
"x64"
]
},
{
"target": "zip",
"arch": [
"x64"
]
}
],
2020-11-29 19:15:42 +02:00
"hardenedRuntime": true,
"notarize": false,
"entitlements": "./build-mac/entitlements.mac.inherit.plist",
"extendInfo": {
"CFBundleURLTypes": [
{
2021-10-17 18:45:10 +02:00
"CFBundleURLSchemes": [
"joplin"
],
"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",
"desktop": {
"Icon": "joplin",
"MimeType": "x-scheme-handler/joplin;"
},
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",
"@electron/rebuild": "3.3.0",
2024-08-09 12:47:43 +02:00
"@joplin/default-plugins": "~3.1",
"@joplin/tools": "~3.1",
"@playwright/test": "1.44.1",
2022-11-05 16:47:55 +02:00
"@testing-library/react-hooks": "8.0.1",
"@types/jest": "29.5.8",
"@types/node": "18.19.38",
"@types/react": "18.3.3",
2024-08-31 17:28:44 +02:00
"@types/react-dom": "18.3.0",
"@types/react-redux": "7.1.33",
"@types/styled-components": "5.1.32",
2023-12-13 21:24:58 +02:00
"@types/tesseract.js": "2.0.0",
"axios": "^1.7.7",
"electron": "29.4.5",
"electron-builder": "24.13.3",
"glob": "10.3.16",
2022-11-05 16:47:55 +02:00
"gulp": "4.0.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"js-sha512": "0.9.0",
"nan": "2.19.0",
2024-08-31 17:28:44 +02:00
"react-test-renderer": "18.3.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.2",
"typescript": "5.2.2"
2017-11-03 01:26:08 +02:00
},
"dependencies": {
"@electron/notarize": "2.1.0",
"@electron/remote": "2.1.2",
2022-11-05 15:09:41 +02:00
"@fortawesome/fontawesome-free": "5.15.4",
"@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",
"@sentry/electron": "4.17.0",
"@types/mustache": "4.2.5",
"async-mutex": "0.5.0",
"codemirror": "5.65.9",
2022-11-05 15:09:41 +02:00
"color": "3.2.1",
"compare-versions": "6.1.0",
2022-11-05 15:09:41 +02:00
"countable": "3.0.1",
"debounce": "1.2.1",
"electron-updater": "6.2.1",
2022-11-05 15:09:41 +02:00
"electron-window-state": "5.0.3",
"formatcoords": "1.1.3",
"fs-extra": "11.2.0",
"highlight.js": "11.9.0",
2022-11-05 15:09:41 +02:00
"immer": "7.0.15",
"keytar": "7.9.0",
2022-11-05 15:09:41 +02:00
"mark.js": "8.11.1",
"md5": "2.3.0",
"moment": "2.30.1",
"mustache": "4.2.0",
2022-11-15 11:10:41 +02:00
"node-fetch": "2.6.7",
"node-notifier": "10.0.1",
2022-11-05 15:09:41 +02:00
"node-rsa": "1.1.1",
"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",
"re-resizable": "6.9.17",
2024-08-31 17:28:44 +02:00
"react": "18.3.1",
"react-datetime": "3.2.0",
2024-08-31 17:28:44 +02:00
"react-dom": "18.3.1",
"react-redux": "8.1.3",
"react-select": "5.8.0",
2022-11-05 15:09:41 +02:00
"react-toggle-button": "2.2.0",
"react-tooltip": "4.5.1",
"redux": "4.2.1",
"reselect": "4.1.8",
2022-11-05 15:09:41 +02:00
"roboto-fontface": "0.10.0",
"smalltalk": "2.5.1",
"sqlite3": "5.1.6",
"styled-components": "5.3.11",
"styled-system": "5.1.5",
2022-11-05 15:09:41 +02:00
"taboverride": "4.0.3",
"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
}
}