2019-03-25 15:53:33 -04:00
|
|
|
{
|
2019-03-25 16:18:39 -04:00
|
|
|
"name": "hyperspace",
|
|
|
|
"version": "1.0.0",
|
2019-03-25 15:53:33 -04:00
|
|
|
"private": true,
|
2019-04-30 16:53:50 -04:00
|
|
|
"homepage": "./",
|
2019-03-25 16:18:39 -04:00
|
|
|
"devDependencies": {
|
2019-04-25 16:29:40 -04:00
|
|
|
"@date-io/moment": "^1.3.5",
|
2019-03-30 17:13:49 -04:00
|
|
|
"@material-ui/core": "^3.9.3",
|
2019-03-25 16:18:39 -04:00
|
|
|
"@material-ui/icons": "^3.0.2",
|
2019-04-25 16:29:40 -04:00
|
|
|
"@types/emoji-mart": "^2.8.2",
|
|
|
|
"@types/jest": "^24.0.11",
|
2019-03-25 15:53:33 -04:00
|
|
|
"@types/node": "11.11.6",
|
|
|
|
"@types/react": "16.8.8",
|
|
|
|
"@types/react-dom": "16.8.3",
|
2019-04-25 16:29:40 -04:00
|
|
|
"@types/react-router-dom": "^4.3.2",
|
2019-03-30 17:13:49 -04:00
|
|
|
"@types/react-swipeable-views": "latest",
|
2019-04-25 16:29:40 -04:00
|
|
|
"axios": "^0.18.0",
|
|
|
|
"emoji-mart": "^2.8.2",
|
|
|
|
"file-dialog": "^0.0.7",
|
|
|
|
"material-ui-pickers": "^2.2.4",
|
|
|
|
"megalodon": "^0.6.3",
|
2019-03-30 17:13:49 -04:00
|
|
|
"moment": "^2.24.0",
|
2019-04-25 16:29:40 -04:00
|
|
|
"notistack": "^0.5.1",
|
|
|
|
"query-string": "^6.4.2",
|
2019-03-30 17:13:49 -04:00
|
|
|
"react": "^16.8.6",
|
|
|
|
"react-dom": "^16.8.6",
|
2019-03-25 16:18:39 -04:00
|
|
|
"react-router-dom": "^5.0.0",
|
2019-04-25 16:29:40 -04:00
|
|
|
"react-scripts": "^2.1.8",
|
2019-03-30 17:13:49 -04:00
|
|
|
"react-swipeable-views": "^0.13.1",
|
2019-04-02 17:28:04 -04:00
|
|
|
"react-web-share-api": "^0.0.2",
|
2019-04-30 16:53:50 -04:00
|
|
|
"typescript": "3.4.1",
|
|
|
|
"electron": "^5.0.0",
|
|
|
|
"electron-builder": "^20.39.0",
|
|
|
|
"electron-updater": "^4.0.6"
|
2019-03-25 15:53:33 -04:00
|
|
|
},
|
2019-04-30 16:53:50 -04:00
|
|
|
"main": "public/desktop.js",
|
2019-03-25 15:53:33 -04:00
|
|
|
"scripts": {
|
2019-04-07 17:25:39 -04:00
|
|
|
"start": "HTTPS=true BROWSER='Safari Technology Preview' react-scripts start",
|
2019-04-30 16:53:50 -04:00
|
|
|
"electrify": "npm run build; electron .",
|
2019-03-25 15:53:33 -04:00
|
|
|
"build": "react-scripts build",
|
2019-04-30 16:53:50 -04:00
|
|
|
"build-desktop": "build -mwl deb AppImage snap",
|
2019-03-25 15:53:33 -04:00
|
|
|
"test": "react-scripts test",
|
|
|
|
"eject": "react-scripts eject"
|
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"extends": "react-app"
|
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
">0.2%",
|
|
|
|
"not dead",
|
|
|
|
"not ie <= 11",
|
|
|
|
"not op_mini all"
|
2019-04-30 16:53:50 -04:00
|
|
|
],
|
|
|
|
"build": {
|
|
|
|
"appId": "net.marquiskurt.hyperspace",
|
|
|
|
"directories": {
|
|
|
|
"buildResources": "desktop"
|
|
|
|
},
|
|
|
|
"mac": {
|
|
|
|
"category": "public.app-category.social-networking",
|
|
|
|
"icon": "desktop/app.icns",
|
|
|
|
"target": [
|
|
|
|
"dmg",
|
|
|
|
"mas"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"mas": {
|
|
|
|
"entitlements": "desktop/entitlements.mas.plist",
|
|
|
|
"provisioningProfile": "desktop/embedded.provisionprofile"
|
|
|
|
},
|
|
|
|
"win": {
|
|
|
|
"target": [
|
|
|
|
"nsis"
|
|
|
|
],
|
|
|
|
"icon": "desktop/app.ico"
|
|
|
|
},
|
|
|
|
"linux": {
|
|
|
|
"target": [
|
|
|
|
"${@:1}"
|
|
|
|
],
|
|
|
|
"icon": "linux",
|
|
|
|
"category": "Network"
|
|
|
|
},
|
|
|
|
"snap": {
|
|
|
|
"confinement": "strict",
|
|
|
|
"summary": "A beautiful, fluffy client for the fediverse"
|
|
|
|
}
|
|
|
|
}
|
2019-03-25 15:53:33 -04:00
|
|
|
}
|