jitsi-meet-electron/package.json

147 lines
4.3 KiB
JSON
Raw Normal View History

2016-12-12 21:46:47 +01:00
{
"name": "jitsi-meet-electron",
2018-10-10 10:29:42 +02:00
"version": "1.1.1",
2016-12-12 21:46:47 +01:00
"description": "Electron application for Jitsi Meet",
"main": "./build/main.js",
2016-12-28 17:25:08 +01:00
"productName": "Jitsi Meet",
2016-12-12 21:46:47 +01:00
"scripts": {
"start": "webpack --config ./webpack.main.js --mode development && concurrently \"npm:watch\" \"electron ./build/main.js\"",
"clean": "rm -rf node_modules build dist",
2018-05-24 17:02:26 +02:00
"lint": "eslint . && flow",
"build": "webpack --config ./webpack.main.js --mode production && webpack --config ./webpack.renderer.js --mode production",
"pack": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder",
"postinstall": "electron-builder install-app-deps",
"validate": "npm ls",
"watch": "webpack --config ./webpack.renderer.js --mode development --watch --watch-poll"
2016-12-12 21:46:47 +01:00
},
"build": {
"appId": "org.jitsi.jitsi-meet",
"productName": "Jitsi Meet",
2018-07-15 21:27:03 +02:00
"generateUpdatesFilesForAllChannels": true,
"files": [
"**/*",
"resources",
"!app",
"!main.js"
],
"mac": {
2018-07-18 09:44:50 +02:00
"artifactName": "jitsi-meet.${ext}",
2018-12-19 09:52:03 +01:00
"category": "public.app-category.video",
"darkModeSupport": true
},
"linux": {
2018-07-18 09:44:50 +02:00
"artifactName": "jitsi-meet-${arch}.${ext}",
"category": "VideoConference;AudioVideo;Audio;Video;Network",
"description": "Jitsi Meet Desktop App",
"executableName": "jitsi-meet",
"target": [
{
"arch": "x64",
"target": "AppImage"
}
]
},
"win": {
2018-07-18 09:44:50 +02:00
"artifactName": "jitsi-meet.${ext}",
"target": [
{
"arch": [
"ia32",
"x64"
],
"target": "nsis"
}
]
},
"directories": {
"buildResources": "resources"
}
},
2016-12-12 21:46:47 +01:00
"pre-commit": [
2018-05-24 17:02:26 +02:00
"lint"
2016-12-12 21:46:47 +01:00
],
"repository": {
"type": "git",
"url": "git://github.com/jitsi/jitsi-meet-electron"
},
"keywords": [
"jingle",
"webrtc",
"xmpp",
"electron",
"jitsi-meet"
],
"author": "Jitsi Team <support@jitsi.org>",
2016-12-12 21:46:47 +01:00
"readmeFilename": "README.md",
"license": "Apache-2.0",
"dependencies": {
2018-12-19 09:44:54 +01:00
"@atlaskit/avatar": "14.1.7",
"@atlaskit/button": "10.1.1",
"@atlaskit/css-reset": "3.0.5",
"@atlaskit/droplist": "7.0.17",
"@atlaskit/field-text": "7.0.19",
"@atlaskit/icon": "15.0.3",
"@atlaskit/navigation": "33.3.8",
"@atlaskit/onboarding": "6.1.14",
"@atlaskit/page": "8.0.12",
"@atlaskit/spinner": "9.0.13",
"@atlaskit/theme": "7.0.1",
"@atlaskit/toggle": "5.0.14",
"electron-debug": "2.0.0",
2018-09-30 21:04:29 +02:00
"electron-is-dev": "1.0.1",
"electron-log": "2.2.17",
2019-10-02 09:20:43 +02:00
"electron-reload": "1.5.0",
2018-12-19 09:44:54 +01:00
"electron-store": "2.0.0",
"electron-updater": "4.0.6",
"electron-window-state": "5.0.3",
2018-06-03 04:36:16 +02:00
"history": "4.7.2",
"jitsi-meet-electron-utils": "github:jitsi/jitsi-meet-electron-utils#v2.0.0",
2018-06-23 01:36:48 +02:00
"js-utils": "github:jitsi/js-utils#0c53500a5120be2aa3fc590f0f932a0d4771920f",
2018-12-19 09:44:54 +01:00
"moment": "2.23.0",
"mousetrap": "1.6.2",
2018-12-19 09:44:54 +01:00
"react": "16.6.3",
"react-dom": "16.6.3",
"react-redux": "5.1.1",
2018-06-03 04:36:16 +02:00
"react-router-redux": "5.0.0-alpha.9",
2018-12-19 09:44:54 +01:00
"redux": "4.0.1",
2018-06-03 04:36:16 +02:00
"redux-logger": "3.0.6",
"redux-persist": "5.10.0",
2018-12-19 09:44:54 +01:00
"redux-persist-electron-storage": "2.0.0",
2018-09-30 21:04:29 +02:00
"source-map-support": "0.5.9",
2018-12-19 09:44:54 +01:00
"styled-components": "3.4.0"
2016-12-12 21:46:47 +01:00
},
"devDependencies": {
2018-12-19 09:44:54 +01:00
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.1",
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
"@babel/plugin-transform-flow-strip-types": "7.2.0",
"@babel/preset-env": "7.2.0",
2018-09-30 21:04:29 +02:00
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
2019-10-16 17:31:40 +02:00
"babel-eslint": "10.0.3",
2018-09-30 21:04:29 +02:00
"babel-loader": "8.0.4",
2018-12-19 09:44:54 +01:00
"babel-plugin-inline-react-svg": "1.0.1",
"concurrently": "4.1.0",
"css-loader": "2.0.1",
"devtron": "1.4.0",
2020-01-13 12:59:11 +01:00
"electron": "7.1.7",
2018-12-19 09:44:54 +01:00
"electron-builder": "20.38.3",
"electron-react-devtools": "0.5.3",
2019-10-16 17:31:40 +02:00
"eslint": "6.5.1",
"eslint-config-jitsi": "github:jitsi/eslint-config-jitsi#1.0.2",
"eslint-plugin-flowtype": "4.3.0",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-jsdoc": "15.11.1",
"eslint-plugin-react": "7.16.0",
2018-09-30 21:04:29 +02:00
"file-loader": "2.0.0",
2019-10-16 17:31:40 +02:00
"flow-bin": "0.109.0",
"html-webpack-plugin": "3.2.0",
"precommit-hook": "3.0.0",
2018-10-10 10:11:01 +02:00
"style-loader": "0.23.1",
2018-06-16 07:59:24 +02:00
"svg-inline-loader": "0.8.0",
2018-12-19 09:44:54 +01:00
"webpack": "4.27.1",
2018-09-30 21:04:29 +02:00
"webpack-cli": "3.1.2"
2016-12-12 21:46:47 +01:00
}
}