2016-09-26 21:39:43 -05:00
|
|
|
{
|
2019-05-22 01:41:08 -05:00
|
|
|
"name": "symphony",
|
2019-01-08 04:21:52 -06:00
|
|
|
"productName": "Symphony",
|
2023-02-09 07:09:26 -06:00
|
|
|
"version": "23.4.0",
|
2019-07-31 07:00:27 -05:00
|
|
|
"clientVersion": "2.0.1",
|
2019-08-29 00:56:54 -05:00
|
|
|
"buildNumber": "0",
|
2019-06-21 13:23:57 -05:00
|
|
|
"searchAPIVersion": "1.55.3",
|
2019-11-06 07:49:23 -06:00
|
|
|
"sfeVersion": "0",
|
2020-11-30 05:14:09 -06:00
|
|
|
"sfeClientType": "1.5",
|
2017-02-17 20:53:25 -06:00
|
|
|
"description": "Symphony desktop app (Foundation ODP)",
|
2019-08-20 04:00:13 -05:00
|
|
|
"author": "Symphony OSS <help@finos.org>",
|
2019-05-21 05:28:18 -05:00
|
|
|
"main": "lib/src/app/init.js",
|
|
|
|
"types": "lib/src/app/init.d.ts",
|
2016-09-26 21:39:43 -05:00
|
|
|
"scripts": {
|
2020-03-18 00:45:00 -05:00
|
|
|
"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 03:43:25 -06: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 00:45:00 -05:00
|
|
|
"compile": "run-s lint compile:*",
|
|
|
|
"compile:project": "gulp build",
|
2021-11-16 03:50:17 -06:00
|
|
|
"dev": "gulp build && npm run browserify && cross-env ELECTRON_DEV=true electron .",
|
2020-03-18 00:45:00 -05:00
|
|
|
"demo": "run-os",
|
2022-05-11 15:58:40 -05: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 02:09:26 -06:00
|
|
|
"format": "pretty-quick",
|
2020-03-18 00:45:00 -05:00
|
|
|
"lint": "run-s lint:*",
|
|
|
|
"lint:project": "tslint --project tsconfig.json",
|
|
|
|
"lint:spec": "tslint --project tsconfig.spec.json",
|
2019-10-30 10:28:25 -05:00
|
|
|
"packed-linux": "npm run prebuild && npm run test && ./node_modules/.bin/electron-builder build --linux",
|
2019-06-03 03:13:36 -05:00
|
|
|
"packed-mac": "npm run unpacked-mac && packagesbuild -v installer/mac/symphony-mac-packager.pkgproj",
|
2022-06-14 03:30:20 -05:00
|
|
|
"prebuild": "run-s compile browserify",
|
|
|
|
"postinstall": "electron-builder install-app-deps",
|
2020-03-18 00:45:00 -05:00
|
|
|
"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-11 20:34:05 -05:00
|
|
|
"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 10:28:25 -05:00
|
|
|
},
|
|
|
|
"build": {
|
2022-08-04 01:42:39 -05:00
|
|
|
"appId": "com.symphony.electron-desktop",
|
2023-01-26 09:42:43 -06:00
|
|
|
"compression": "maximum",
|
2022-07-11 20:34:05 -05:00
|
|
|
"artifactName": "${productName}-${version}-${os}.${ext}",
|
2019-10-30 10:28:25 -05:00
|
|
|
"asar": true,
|
2019-10-31 00:13:21 -05:00
|
|
|
"asarUnpack": "**/*.node",
|
2022-07-11 20:34:05 -05:00
|
|
|
"nsis": {
|
2022-07-13 02:20:04 -05:00
|
|
|
"perMachine": false,
|
2022-07-20 04:00:16 -05:00
|
|
|
"oneClick": true,
|
|
|
|
"allowToChangeInstallationDirectory": false,
|
|
|
|
"allowElevation": false,
|
2022-07-13 02:20:04 -05:00
|
|
|
"include": "build/installer.nsh",
|
|
|
|
"uninstallDisplayName": "${productName}"
|
2022-07-11 20:34:05 -05:00
|
|
|
},
|
2019-10-30 10:28:25 -05:00
|
|
|
"files": [
|
2022-08-11 07:47:23 -05:00
|
|
|
"!.git${/*}",
|
2019-10-30 10:28:25 -05:00
|
|
|
"!coverage/*",
|
|
|
|
"!installer/*",
|
2023-01-26 09:42:43 -06:00
|
|
|
"!dist/*",
|
|
|
|
"!src/*",
|
2019-10-30 10:28:25 -05:00
|
|
|
"!tests/*",
|
|
|
|
"!node_modules/@nornagon/cld/deps/cld${/*}",
|
|
|
|
"!node_modules/@nornagon/cld/build/deps${/*}",
|
2020-03-31 10:59:07 -05:00
|
|
|
"!node_modules/@nornagon/spellchecker/vendor${/*}",
|
|
|
|
"!**/*.map"
|
2019-10-30 10:28:25 -05:00
|
|
|
],
|
|
|
|
"extraFiles": [
|
|
|
|
"config/Symphony.config",
|
|
|
|
"config/titleBarStyles.css",
|
2020-06-13 01:12:57 -05:00
|
|
|
"config/InstallVariant.info",
|
2023-03-02 08:59:44 -06:00
|
|
|
"dictionaries/**",
|
|
|
|
"node_modules/screen-share-indicator-frame/SymphonyScreenShareIndicator"
|
2019-10-30 10:28:25 -05:00
|
|
|
],
|
|
|
|
"mac": {
|
|
|
|
"category": "public.app-category.business",
|
2020-01-14 08:37:57 -06:00
|
|
|
"icon": "images/icon.icns",
|
|
|
|
"entitlements": "entitlements.mac.plist",
|
2020-02-13 12:11:16 -06:00
|
|
|
"entitlementsInherit": "entitlements.mac.plist",
|
|
|
|
"gatekeeperAssess": true,
|
|
|
|
"hardenedRuntime": true,
|
|
|
|
"binaries": [
|
|
|
|
"library/lz4.exec",
|
|
|
|
"library/indexvalidator.exec",
|
|
|
|
"library/libsymphonysearch.dylib",
|
|
|
|
"library/cryptoLib.dylib",
|
2020-04-27 06:04:56 -05:00
|
|
|
"library/dictionary"
|
2022-07-11 20:34:05 -05:00
|
|
|
],
|
|
|
|
"target": [
|
|
|
|
"dir",
|
|
|
|
"zip"
|
2020-02-13 12:11:16 -06:00
|
|
|
]
|
2019-10-30 10:28:25 -05:00
|
|
|
},
|
|
|
|
"win": {
|
|
|
|
"icon": "images/icon.ico",
|
|
|
|
"target": [
|
2022-07-11 20:34:05 -05:00
|
|
|
"dir",
|
2022-07-13 02:20:04 -05:00
|
|
|
"nsis"
|
|
|
|
],
|
2022-07-26 20:49:41 -05:00
|
|
|
"files": [
|
2022-08-11 07:47:23 -05: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-26 20:49:41 -05:00
|
|
|
],
|
2022-07-13 02:20:04 -05:00
|
|
|
"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-26 20:49:41 -05:00
|
|
|
},
|
2023-02-08 04:36:23 -06:00
|
|
|
{
|
|
|
|
"from": "node_modules/symphony-native-window-handle-helper/SymphonyNativeWindowHandleHelper.exe",
|
|
|
|
"to": "SymphonyNativeWindowHandleHelper.exe"
|
|
|
|
},
|
2022-07-26 20:49:41 -05:00
|
|
|
{
|
|
|
|
"from": "node_modules/@symphony/symphony-c9-shell/shell",
|
2022-08-11 07:47:23 -05:00
|
|
|
"to": "cloud9/shell",
|
2022-07-26 20:49:41 -05:00
|
|
|
"filter": [
|
|
|
|
"**/*"
|
|
|
|
]
|
2022-07-13 02:20:04 -05:00
|
|
|
}
|
2019-10-30 10:28:25 -05:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"linux": {
|
|
|
|
"category": "Network;InstantMessaging;Chat",
|
|
|
|
"desktop": {
|
|
|
|
"StartupWMClass": "Symphony"
|
|
|
|
},
|
|
|
|
"target": [
|
|
|
|
"deb",
|
|
|
|
"rpm"
|
|
|
|
],
|
|
|
|
"icon": "images/linux"
|
|
|
|
}
|
2016-11-07 14:31:39 -06:00
|
|
|
},
|
2016-09-26 21:39:43 -05:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2017-02-17 20:53:25 -06:00
|
|
|
"url": "git+https://github.com/SymphonyOSS/SymphonyElectron.git"
|
2016-09-26 21:39:43 -05:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"Symphony",
|
2016-11-07 14:31:39 -06:00
|
|
|
"start"
|
2016-09-26 21:39:43 -05:00
|
|
|
],
|
2017-02-17 20:53:25 -06:00
|
|
|
"license": "Apache-2.0",
|
2016-09-26 21:39:43 -05:00
|
|
|
"bugs": {
|
2016-11-07 14:31:39 -06:00
|
|
|
"url": "https://support.symphony.com"
|
2016-09-26 21:39:43 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-09-25 03:53:35 -05:00
|
|
|
"@types/cheerio": "^0.22.22",
|
|
|
|
"@types/enzyme": "^3.10.7",
|
2022-12-07 04:28:37 -06:00
|
|
|
"@types/fs-extra": "^9.0.0",
|
2019-01-22 09:12:16 -06:00
|
|
|
"@types/jest": "23.3.12",
|
2021-03-03 01:31:14 -06:00
|
|
|
"@types/node": "^12.12.43",
|
2022-12-05 07:33:09 -06:00
|
|
|
"@types/react": "16.14.34",
|
2022-12-05 06:05:49 -06:00
|
|
|
"@types/react-dom": "16.9.17",
|
2020-10-14 06:58:28 -05:00
|
|
|
"@types/rimraf": "^3.0.0",
|
2023-02-21 08:42:21 -06:00
|
|
|
"browserify": "17.0.0",
|
2022-07-29 02:53:34 -05:00
|
|
|
"builder-util-runtime": "^9.0.3",
|
2023-02-24 02:23:31 -06:00
|
|
|
"cross-env": "7.0.3",
|
2019-01-22 09:12:16 -06:00
|
|
|
"del": "3.0.0",
|
2023-02-15 08:51:49 -06:00
|
|
|
"electron": "^23.1.0",
|
2023-03-07 09:46:29 -06:00
|
|
|
"electron-builder": "24.0.0",
|
2022-12-02 00:51:30 -06:00
|
|
|
"electron-builder-squirrel-windows": "20.44.0",
|
2022-12-01 04:10:10 -06:00
|
|
|
"electron-icon-maker": "0.0.5",
|
2022-12-06 04:50:21 -06:00
|
|
|
"electron-osx-sign": "^0.6.0",
|
2020-09-25 03:53:35 -05:00
|
|
|
"enzyme": "^3.11.0",
|
|
|
|
"enzyme-adapter-react-16": "^1.10.0",
|
|
|
|
"enzyme-to-json": "^3.3.5",
|
2022-12-01 07:06:15 -06:00
|
|
|
"gulp": "4.0.2",
|
2019-01-02 04:19:50 -06:00
|
|
|
"gulp-less": "4.0.1",
|
2023-01-12 03:43:25 -06:00
|
|
|
"gulp-rename": "^2.0.0",
|
|
|
|
"gulp-replace": "^1.1.3",
|
2022-12-01 08:44:03 -06:00
|
|
|
"gulp-sourcemaps": "2.6.5",
|
2023-01-12 03:43:25 -06:00
|
|
|
"gulp-tap": "^2.0.0",
|
|
|
|
"gulp-template": "^5.0.0",
|
2019-10-30 10:28:25 -05:00
|
|
|
"gulp-typescript": "5.0.1",
|
2021-01-29 00:11:05 -06:00
|
|
|
"husky": "^4.3.8",
|
2023-01-12 03:43:25 -06:00
|
|
|
"imgurify": "^2.0.1",
|
2020-03-31 05:40:04 -05:00
|
|
|
"jest": "25.2.4",
|
2022-12-01 22:13:31 -06:00
|
|
|
"jest-html-reporter": "3.7.0",
|
2022-07-25 02:11:48 -05:00
|
|
|
"js-yaml": "^4.1.0",
|
2023-01-12 03:43:25 -06:00
|
|
|
"less": "^3.13.1",
|
2020-03-18 00:45:00 -05:00
|
|
|
"ncp": "2.0.0",
|
2022-04-05 06:49:31 -05:00
|
|
|
"node-abi": "^3.8.0",
|
2020-03-31 05:40:04 -05:00
|
|
|
"npm-run-all": "4.1.5",
|
2023-02-23 08:48:41 -06:00
|
|
|
"prettier": "2.8.4",
|
2021-01-29 00:11:05 -06:00
|
|
|
"pretty-quick": "^3.1.0",
|
2022-06-16 02:02:30 -05:00
|
|
|
"run-script-os": "^1.1.6",
|
2020-03-31 05:40:04 -05:00
|
|
|
"ts-jest": "25.3.0",
|
2023-02-23 08:38:38 -06:00
|
|
|
"tslint": "5.20.1",
|
2021-01-29 00:11:05 -06:00
|
|
|
"tslint-config-prettier": "^1.18.0",
|
2022-12-01 08:44:38 -06:00
|
|
|
"typescript": "3.9.10"
|
2016-11-07 14:31:39 -06:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-11-06 10:17:48 -06:00
|
|
|
"@types/lazy-brush": "^1.0.0",
|
2023-02-21 08:41:45 -06:00
|
|
|
"archiver": "5.3.1",
|
2018-03-08 05:09:27 -06:00
|
|
|
"async.map": "0.5.2",
|
2018-12-19 00:16:03 -06:00
|
|
|
"classnames": "2.2.6",
|
2022-12-01 08:45:18 -06:00
|
|
|
"electron-dl": "3.5.0",
|
2022-12-01 07:41:45 -06:00
|
|
|
"electron-fetch": "1.9.1",
|
2022-12-02 00:52:06 -06:00
|
|
|
"electron-log": "4.4.8",
|
2022-07-11 20:34:05 -05:00
|
|
|
"electron-updater": "^5.0.1",
|
2022-12-02 03:32:32 -06:00
|
|
|
"filesize": "6.4.0",
|
2020-11-06 10:17:48 -06:00
|
|
|
"lazy-brush": "^1.0.1",
|
2022-12-05 06:08:55 -06:00
|
|
|
"react": "16.14.0",
|
|
|
|
"react-dom": "16.14.0",
|
2020-10-14 06:58:28 -05:00
|
|
|
"rimraf": "^3.0.2",
|
2020-12-01 09:35:29 -06:00
|
|
|
"save-svg-as-png": "^1.4.17",
|
2022-11-17 07:45:27 -06:00
|
|
|
"shell-path": "^3.0.0",
|
|
|
|
"win32-api": "^20.1.0"
|
2017-04-21 18:07:36 -05:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2023-03-09 05:25:43 -06:00
|
|
|
"@symphony/symphony-c9-shell": "3.19.0-0.98.17.157",
|
2023-02-08 04:36:23 -06: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 02:10:09 -06:00
|
|
|
"winreg": "^1.2.4"
|
2020-03-18 00:45:00 -05:00
|
|
|
},
|
|
|
|
"ava": {
|
|
|
|
"failFast": true,
|
|
|
|
"files": [
|
|
|
|
"lib/spectron/**/*.spec.js"
|
|
|
|
],
|
2020-03-31 05:40:04 -05:00
|
|
|
"ignoredByWatcher": [
|
|
|
|
"!lib/src/**/*.js"
|
2020-03-18 00:45:00 -05:00
|
|
|
]
|
2021-01-29 00:11:05 -06:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2021-01-29 01:40:30 -06:00
|
|
|
"pre-commit": "pretty-quick --staged && npm run lint"
|
2021-01-29 00:11:05 -06:00
|
|
|
}
|
2016-09-26 21:39:43 -05:00
|
|
|
}
|
2023-02-09 07:09:26 -06:00
|
|
|
}
|