2016-09-26 19:39:43 -07:00
|
|
|
{
|
2019-05-22 12:11:08 +05:30
|
|
|
"name": "symphony",
|
2019-01-08 15:51:52 +05:30
|
|
|
"productName": "Symphony",
|
2023-12-01 15:07:52 +01:00
|
|
|
"version": "24.1.0",
|
2019-07-31 17:30:27 +05:30
|
|
|
"clientVersion": "2.0.1",
|
2019-08-29 11:26:54 +05:30
|
|
|
"buildNumber": "0",
|
2019-06-21 23:53:57 +05:30
|
|
|
"searchAPIVersion": "1.55.3",
|
2019-11-06 14:49:23 +01:00
|
|
|
"sfeVersion": "0",
|
2020-11-30 12:14:09 +01:00
|
|
|
"sfeClientType": "1.5",
|
2017-02-17 18:53:25 -08:00
|
|
|
"description": "Symphony desktop app (Foundation ODP)",
|
2019-08-20 14:30:13 +05:30
|
|
|
"author": "Symphony OSS <help@finos.org>",
|
2019-05-21 15:58:18 +05:30
|
|
|
"main": "lib/src/app/init.js",
|
|
|
|
|
"types": "lib/src/app/init.d.ts",
|
2016-09-26 19:39:43 -07:00
|
|
|
"scripts": {
|
2020-03-18 11:15:00 +05:30
|
|
|
"browserify": "run-s browserify-*",
|
|
|
|
|
"browserify-preload": "browserify -o lib/src/renderer/_preload-main.js -x electron --insert-global-vars=__filename,__dirname lib/src/renderer/preload-main.js",
|
2023-01-12 10:43:25 +01:00
|
|
|
"browserify-preload-component": "browserify -o lib/src/renderer/_preload-component.js -x electron --insert-global-vars=__filename,__dirname -t imgurify lib/src/renderer/preload-component.js",
|
2020-03-18 11:15:00 +05:30
|
|
|
"compile": "run-s lint compile:*",
|
|
|
|
|
"compile:project": "gulp build",
|
2021-11-16 10:50:17 +01:00
|
|
|
"dev": "gulp build && npm run browserify && cross-env ELECTRON_DEV=true electron .",
|
2020-03-18 11:15:00 +05:30
|
|
|
"demo": "run-os",
|
2022-05-11 22:58:40 +02:00
|
|
|
"demo:win32": "gulp build && npm run browserify && cross-env ELECTRON_DEV=true electron . --url=file:///src/demo/index.html",
|
|
|
|
|
"demo:darwin": "gulp build && npm run browserify && cross-env ELECTRON_DEV=true electron . --url=file://$(pwd)/src/demo/index.html",
|
2021-01-29 13:39:26 +05:30
|
|
|
"format": "pretty-quick",
|
2020-03-18 11:15:00 +05:30
|
|
|
"lint": "run-s lint:*",
|
|
|
|
|
"lint:project": "tslint --project tsconfig.json",
|
|
|
|
|
"lint:spec": "tslint --project tsconfig.spec.json",
|
2019-10-30 20:58:25 +05:30
|
|
|
"packed-linux": "npm run prebuild && npm run test && ./node_modules/.bin/electron-builder build --linux",
|
2019-06-03 13:43:36 +05:30
|
|
|
"packed-mac": "npm run unpacked-mac && packagesbuild -v installer/mac/symphony-mac-packager.pkgproj",
|
2022-06-14 14:00:20 +05:30
|
|
|
"prebuild": "run-s compile browserify",
|
|
|
|
|
"postinstall": "electron-builder install-app-deps",
|
2020-03-18 11:15:00 +05:30
|
|
|
"start": "run-s compile browserify && cross-env ELECTRON_DEV=true electron .",
|
|
|
|
|
"test": "run-s lint test:unit",
|
|
|
|
|
"test:unit": "cross-env ELECTRON_QA=true jest --config jest-config.json --runInBand --detectOpenHandles",
|
2022-07-12 07:04:05 +05:30
|
|
|
"unpacked-mac": "npm run prebuild && npm run test && ./node_modules/.bin/electron-builder build --mac",
|
|
|
|
|
"unpacked-win": "npm run prebuild && npm run test && node_modules\\.bin\\electron-builder build --win --x64"
|
2019-10-30 20:58:25 +05:30
|
|
|
},
|
|
|
|
|
"build": {
|
2022-08-04 12:12:39 +05:30
|
|
|
"appId": "com.symphony.electron-desktop",
|
2023-01-26 16:42:43 +01:00
|
|
|
"compression": "maximum",
|
2022-07-12 07:04:05 +05:30
|
|
|
"artifactName": "${productName}-${version}-${os}.${ext}",
|
2019-10-30 20:58:25 +05:30
|
|
|
"asar": true,
|
2019-10-31 10:43:21 +05:30
|
|
|
"asarUnpack": "**/*.node",
|
2022-07-12 07:04:05 +05:30
|
|
|
"nsis": {
|
2022-07-13 12:50:04 +05:30
|
|
|
"perMachine": false,
|
2022-07-20 14:30:16 +05:30
|
|
|
"oneClick": true,
|
|
|
|
|
"allowToChangeInstallationDirectory": false,
|
|
|
|
|
"allowElevation": false,
|
2022-07-13 12:50:04 +05:30
|
|
|
"include": "build/installer.nsh",
|
|
|
|
|
"uninstallDisplayName": "${productName}"
|
2022-07-12 07:04:05 +05:30
|
|
|
},
|
2019-10-30 20:58:25 +05:30
|
|
|
"files": [
|
2022-08-11 14:47:23 +02:00
|
|
|
"!.git${/*}",
|
2019-10-30 20:58:25 +05:30
|
|
|
"!coverage/*",
|
|
|
|
|
"!installer/*",
|
2023-01-26 16:42:43 +01:00
|
|
|
"!dist/*",
|
|
|
|
|
"!src/*",
|
2019-10-30 20:58:25 +05:30
|
|
|
"!tests/*",
|
|
|
|
|
"!node_modules/@nornagon/cld/deps/cld${/*}",
|
|
|
|
|
"!node_modules/@nornagon/cld/build/deps${/*}",
|
2020-03-31 21:29:07 +05:30
|
|
|
"!node_modules/@nornagon/spellchecker/vendor${/*}",
|
|
|
|
|
"!**/*.map"
|
2019-10-30 20:58:25 +05:30
|
|
|
],
|
|
|
|
|
"extraFiles": [
|
|
|
|
|
"config/Symphony.config",
|
|
|
|
|
"config/titleBarStyles.css",
|
2020-06-13 11:42:57 +05:30
|
|
|
"config/InstallVariant.info",
|
2023-03-02 15:59:44 +01:00
|
|
|
"dictionaries/**",
|
|
|
|
|
"node_modules/screen-share-indicator-frame/SymphonyScreenShareIndicator"
|
2019-10-30 20:58:25 +05:30
|
|
|
],
|
|
|
|
|
"mac": {
|
|
|
|
|
"category": "public.app-category.business",
|
2020-01-14 20:07:57 +05:30
|
|
|
"icon": "images/icon.icns",
|
|
|
|
|
"entitlements": "entitlements.mac.plist",
|
2023-03-13 11:11:30 +01:00
|
|
|
"notarize": false,
|
2020-02-13 23:41:16 +05:30
|
|
|
"entitlementsInherit": "entitlements.mac.plist",
|
2023-05-10 14:40:18 +02:00
|
|
|
"extendInfo": {
|
|
|
|
|
"CFBundleURLTypes": [
|
|
|
|
|
{
|
|
|
|
|
"CFBundleTypeRole": "Viewer",
|
|
|
|
|
"CFBundleURLName": "SymTel",
|
|
|
|
|
"CFBundleURLSchemes": [
|
|
|
|
|
"tel"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
2020-02-13 23:41:16 +05:30
|
|
|
"gatekeeperAssess": true,
|
|
|
|
|
"hardenedRuntime": true,
|
2022-07-12 07:04:05 +05:30
|
|
|
"target": [
|
|
|
|
|
"dir",
|
|
|
|
|
"zip"
|
2020-02-13 23:41:16 +05:30
|
|
|
]
|
2019-10-30 20:58:25 +05:30
|
|
|
},
|
|
|
|
|
"win": {
|
|
|
|
|
"icon": "images/icon.ico",
|
|
|
|
|
"target": [
|
2022-07-12 07:04:05 +05:30
|
|
|
"dir",
|
2022-07-13 12:50:04 +05:30
|
|
|
"nsis"
|
|
|
|
|
],
|
2022-07-27 07:19:41 +05:30
|
|
|
"files": [
|
2022-08-11 14:47:23 +02:00
|
|
|
"**/*",
|
|
|
|
|
"!.git${/*}",
|
|
|
|
|
"!**/installer${/*}",
|
|
|
|
|
"!node_modules/@symphony/symphony-c9-shell${/*}",
|
|
|
|
|
"!**/node_modules/@nornagon/cld/deps/cld${/*}",
|
|
|
|
|
"!**/node_modules/@nornagon/cld/build/deps${/*}",
|
|
|
|
|
"!**/node_modules/@nornagon/spellchecker/vendor${/*}",
|
|
|
|
|
"!**/*.map",
|
|
|
|
|
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
|
|
|
|
|
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
|
|
|
|
|
"!**/node_modules/*.d.ts",
|
|
|
|
|
"!**/node_modules/.bin",
|
|
|
|
|
"!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}",
|
|
|
|
|
"!.editorconfig",
|
|
|
|
|
"!**/._*",
|
|
|
|
|
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}",
|
|
|
|
|
"!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}",
|
|
|
|
|
"!**/{appveyor.yml,.travis.yml,circle.yml}",
|
|
|
|
|
"!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}"
|
2022-07-27 07:19:41 +05:30
|
|
|
],
|
2022-07-13 12:50:04 +05:30
|
|
|
"extraFiles": [
|
|
|
|
|
{
|
|
|
|
|
"from": "node_modules/screen-share-indicator-frame/ScreenShareIndicatorFrame.exe",
|
|
|
|
|
"to": "ScreenShareIndicatorFrame.exe"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"from": "node_modules/screen-snippet/ScreenSnippet.exe",
|
|
|
|
|
"to": "ScreenSnippet.exe"
|
2022-07-27 07:19:41 +05:30
|
|
|
},
|
2023-02-08 11:36:23 +01:00
|
|
|
{
|
|
|
|
|
"from": "node_modules/symphony-native-window-handle-helper/SymphonyNativeWindowHandleHelper.exe",
|
|
|
|
|
"to": "SymphonyNativeWindowHandleHelper.exe"
|
|
|
|
|
},
|
2022-07-27 07:19:41 +05:30
|
|
|
{
|
|
|
|
|
"from": "node_modules/@symphony/symphony-c9-shell/shell",
|
2022-08-11 14:47:23 +02:00
|
|
|
"to": "cloud9/shell",
|
2022-07-27 07:19:41 +05:30
|
|
|
"filter": [
|
|
|
|
|
"**/*"
|
|
|
|
|
]
|
2022-07-13 12:50:04 +05:30
|
|
|
}
|
2019-10-30 20:58:25 +05:30
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"linux": {
|
|
|
|
|
"category": "Network;InstantMessaging;Chat",
|
|
|
|
|
"desktop": {
|
|
|
|
|
"StartupWMClass": "Symphony"
|
|
|
|
|
},
|
|
|
|
|
"target": [
|
|
|
|
|
"deb",
|
|
|
|
|
"rpm"
|
|
|
|
|
],
|
|
|
|
|
"icon": "images/linux"
|
|
|
|
|
}
|
2016-11-07 12:31:39 -08:00
|
|
|
},
|
2016-09-26 19:39:43 -07:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2017-02-17 18:53:25 -08:00
|
|
|
"url": "git+https://github.com/SymphonyOSS/SymphonyElectron.git"
|
2016-09-26 19:39:43 -07:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"Symphony",
|
2016-11-07 12:31:39 -08:00
|
|
|
"start"
|
2016-09-26 19:39:43 -07:00
|
|
|
],
|
2017-02-17 18:53:25 -08:00
|
|
|
"license": "Apache-2.0",
|
2016-09-26 19:39:43 -07:00
|
|
|
"bugs": {
|
2016-11-07 12:31:39 -08:00
|
|
|
"url": "https://support.symphony.com"
|
2016-09-26 19:39:43 -07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2020-09-25 14:23:35 +05:30
|
|
|
"@types/cheerio": "^0.22.22",
|
|
|
|
|
"@types/enzyme": "^3.10.7",
|
2022-12-07 10:28:37 +00:00
|
|
|
"@types/fs-extra": "^9.0.0",
|
2019-01-22 13:12:16 -02:00
|
|
|
"@types/jest": "23.3.12",
|
2023-06-15 15:38:47 +02:00
|
|
|
"@types/node": "^18.16.0",
|
2022-12-05 13:33:09 +00:00
|
|
|
"@types/react": "16.14.34",
|
2022-12-05 12:05:49 +00:00
|
|
|
"@types/react-dom": "16.9.17",
|
2020-10-14 17:28:28 +05:30
|
|
|
"@types/rimraf": "^3.0.0",
|
2023-02-21 14:42:21 +00:00
|
|
|
"browserify": "17.0.0",
|
2022-07-29 13:23:34 +05:30
|
|
|
"builder-util-runtime": "^9.0.3",
|
2023-02-24 09:23:31 +01:00
|
|
|
"cross-env": "7.0.3",
|
2019-01-22 13:12:16 -02:00
|
|
|
"del": "3.0.0",
|
2023-12-15 11:19:38 +01:00
|
|
|
"electron": "27.1.3",
|
2023-05-17 10:03:19 +02:00
|
|
|
"electron-builder": "^24.2.1",
|
2022-12-01 10:10:10 +00:00
|
|
|
"electron-icon-maker": "0.0.5",
|
2022-12-06 10:50:21 +00:00
|
|
|
"electron-osx-sign": "^0.6.0",
|
2020-09-25 14:23:35 +05:30
|
|
|
"enzyme": "^3.11.0",
|
|
|
|
|
"enzyme-adapter-react-16": "^1.10.0",
|
|
|
|
|
"enzyme-to-json": "^3.3.5",
|
2022-12-01 13:06:15 +00:00
|
|
|
"gulp": "4.0.2",
|
2023-03-21 09:01:51 +01:00
|
|
|
"gulp-less": "5.0.0",
|
2023-01-12 10:43:25 +01:00
|
|
|
"gulp-rename": "^2.0.0",
|
|
|
|
|
"gulp-replace": "^1.1.3",
|
2022-12-01 14:44:03 +00:00
|
|
|
"gulp-sourcemaps": "2.6.5",
|
2023-01-12 10:43:25 +01:00
|
|
|
"gulp-tap": "^2.0.0",
|
|
|
|
|
"gulp-template": "^5.0.0",
|
2019-10-30 20:58:25 +05:30
|
|
|
"gulp-typescript": "5.0.1",
|
2021-01-29 11:41:05 +05:30
|
|
|
"husky": "^4.3.8",
|
2023-01-12 10:43:25 +01:00
|
|
|
"imgurify": "^2.0.1",
|
2020-03-31 16:10:04 +05:30
|
|
|
"jest": "25.2.4",
|
2022-12-02 04:13:31 +00:00
|
|
|
"jest-html-reporter": "3.7.0",
|
2022-07-25 09:11:48 +02:00
|
|
|
"js-yaml": "^4.1.0",
|
2023-01-12 10:43:25 +01:00
|
|
|
"less": "^3.13.1",
|
2020-03-18 11:15:00 +05:30
|
|
|
"ncp": "2.0.0",
|
2022-04-05 13:49:31 +02:00
|
|
|
"node-abi": "^3.8.0",
|
2020-03-31 16:10:04 +05:30
|
|
|
"npm-run-all": "4.1.5",
|
2023-02-23 14:48:41 +00:00
|
|
|
"prettier": "2.8.4",
|
2021-01-29 11:41:05 +05:30
|
|
|
"pretty-quick": "^3.1.0",
|
2022-06-16 12:32:30 +05:30
|
|
|
"run-script-os": "^1.1.6",
|
2023-06-15 10:58:40 +02:00
|
|
|
"source-map": "^0.7.4",
|
2020-03-31 16:10:04 +05:30
|
|
|
"ts-jest": "25.3.0",
|
2023-02-23 15:38:38 +01:00
|
|
|
"tslint": "5.20.1",
|
2021-01-29 11:41:05 +05:30
|
|
|
"tslint-config-prettier": "^1.18.0",
|
2023-06-15 15:03:13 +02:00
|
|
|
"typescript": "^4.9.5"
|
2016-11-07 12:31:39 -08:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2020-11-06 17:17:48 +01:00
|
|
|
"@types/lazy-brush": "^1.0.0",
|
2023-02-21 14:41:45 +00:00
|
|
|
"archiver": "5.3.1",
|
2018-03-08 16:39:27 +05:30
|
|
|
"async.map": "0.5.2",
|
2018-12-19 11:46:03 +05:30
|
|
|
"classnames": "2.2.6",
|
2022-12-01 14:45:18 +00:00
|
|
|
"electron-dl": "3.5.0",
|
2022-12-01 13:41:45 +00:00
|
|
|
"electron-fetch": "1.9.1",
|
2022-12-02 06:52:06 +00:00
|
|
|
"electron-log": "4.4.8",
|
2023-07-18 14:23:31 +05:30
|
|
|
"electron-updater": "^6.1.3",
|
2023-03-21 09:50:10 +01:00
|
|
|
"filesize": "^10.0.6",
|
2020-11-06 17:17:48 +01:00
|
|
|
"lazy-brush": "^1.0.1",
|
2022-12-05 12:08:55 +00:00
|
|
|
"react": "16.14.0",
|
|
|
|
|
"react-dom": "16.14.0",
|
2020-10-14 17:28:28 +05:30
|
|
|
"rimraf": "^3.0.2",
|
2020-12-01 16:35:29 +01:00
|
|
|
"save-svg-as-png": "^1.4.17",
|
2022-11-17 14:45:27 +01:00
|
|
|
"shell-path": "^3.0.0",
|
2023-11-09 13:54:33 +05:30
|
|
|
"systeminformation": "5.21.7"
|
2017-04-21 16:07:36 -07:00
|
|
|
},
|
|
|
|
|
"optionalDependencies": {
|
2023-12-19 16:10:57 +01:00
|
|
|
"@symphony/symphony-c9-shell": "3.29.0-0.98.2.174",
|
2023-02-08 11:36:23 +01:00
|
|
|
"screen-share-indicator-frame": "git+https://github.com/finos/ScreenShareIndicatorFrame.git#v1.4.13",
|
|
|
|
|
"screen-snippet": "git+https://github.com/finos/ScreenSnippet2.git#9.2.2",
|
|
|
|
|
"symphony-native-window-handle-helper": "github:finos/SymphonyWindowsHwndHelper#1.0.1",
|
2022-02-03 09:10:09 +01:00
|
|
|
"winreg": "^1.2.4"
|
2020-03-18 11:15:00 +05:30
|
|
|
},
|
|
|
|
|
"ava": {
|
|
|
|
|
"failFast": true,
|
|
|
|
|
"files": [
|
|
|
|
|
"lib/spectron/**/*.spec.js"
|
|
|
|
|
],
|
2020-03-31 16:10:04 +05:30
|
|
|
"ignoredByWatcher": [
|
|
|
|
|
"!lib/src/**/*.js"
|
2020-03-18 11:15:00 +05:30
|
|
|
]
|
2021-01-29 11:41:05 +05:30
|
|
|
},
|
|
|
|
|
"husky": {
|
|
|
|
|
"hooks": {
|
2021-01-29 13:10:30 +05:30
|
|
|
"pre-commit": "pretty-quick --staged && npm run lint"
|
2021-01-29 11:41:05 +05:30
|
|
|
}
|
2016-09-26 19:39:43 -07:00
|
|
|
}
|
2023-05-17 10:03:19 +02:00
|
|
|
}
|