discord-sandboxed/package.json

51 lines
1.3 KiB
JSON
Raw Normal View History

2019-10-07 05:06:55 +00:00
{
2022-02-24 03:13:46 +00:00
"name": "discord-sandboxed",
2022-02-24 02:06:59 +00:00
"author": "Michael Peters <rick.rat@protonmail.com> (http://elipzer.com)",
"version": "1.2.0",
"description": "Puts Discord's web client in an electron webview to hard-block telemetry",
2019-10-07 05:06:55 +00:00
"main": "main.js",
"scripts": {
2019-10-15 00:35:25 +00:00
"start": "electron . dev",
2019-10-12 23:49:31 +00:00
"postinstall": "electron-builder install-app-deps",
2022-02-24 02:06:59 +00:00
"package-pacman": "electron-builder --linux pacman"
2019-10-07 05:06:55 +00:00
},
2019-10-13 04:07:50 +00:00
"repository": "https://github.com/khlam/discord-sandboxed",
2019-10-07 05:06:55 +00:00
"keywords": [
2019-10-12 23:49:31 +00:00
"discord",
"privacy",
"sandbox"
2019-10-07 05:06:55 +00:00
],
2019-10-12 23:49:31 +00:00
"license": "GNU GENERAL PUBLIC LICENSE Version 3",
2019-10-07 05:06:55 +00:00
"dependencies": {
2022-02-24 02:06:59 +00:00
"chokidar": "^3.5.3",
"graceful-fs": "^4.2.9"
2019-10-12 01:51:13 +00:00
},
"iohook": {
"targets": [
2022-02-24 02:06:59 +00:00
"node-102",
"electron-101"
2019-10-12 01:51:13 +00:00
],
"platforms": [
"linux"
],
"arches": [
"x64"
]
2019-10-12 23:49:31 +00:00
},
2022-02-24 00:44:46 +00:00
"devDependencies": {
"electron": "^17.1.0",
"electron-builder": "^22.14.13"
2022-02-24 02:06:59 +00:00
},
"linux": {
"target": "pacman",
"maintainer": "Michael Peters <rick.rat@protonmail.com> (http://elipzer.com)",
"icon": "views/assets/icon.ico",
"synopsis": "Discord Sandboxed fork by Michael Peters",
"description": "Puts Discord's web client in an electron webview to hard-block telemetry",
"depends": [
"libxkbcommon-x11"
],
"packageName": "discord-sandboxed"
2019-10-07 05:06:55 +00:00
}
}