49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "dsr",
|
|
"version": "1.11.0",
|
|
"description": "Discord Video Sharing",
|
|
"main": "./dist/main.js",
|
|
"scripts": {
|
|
"build": "rm -rf ./dist 2> /dev/null; npx tsc",
|
|
"start": "npm run build && electron-forge start",
|
|
"make": "npm run build && electron-forge make"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.mylloon.fr/Anri/dsr"
|
|
},
|
|
"keywords": [
|
|
"discord"
|
|
],
|
|
"author": "Mylloon",
|
|
"license": "AGPL-3.0-or-later",
|
|
"dependencies": {
|
|
"@electron-forge/maker-zip": "^7.4",
|
|
"ffmpeg-static": "^5.2",
|
|
"ffprobe-static": "^3.1",
|
|
"typescript": "^5.6"
|
|
},
|
|
"devDependencies": {
|
|
"@electron-forge/cli": "^7.4",
|
|
"@types/ffprobe-static": "^2.0",
|
|
"electron": "^32.1"
|
|
},
|
|
"config": {
|
|
"forge": {
|
|
"packagerConfig": {
|
|
"icon": "./image/icon.ico",
|
|
"asar": {
|
|
"unpack": "**/node_modules/*-static/**"
|
|
}
|
|
},
|
|
"makers": [
|
|
{
|
|
"name": "@electron-forge/maker-zip",
|
|
"platforms": [
|
|
"win32"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|