-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.89 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "mega-soundboard",
"version": "0.8.0",
"description": "Play and manage sounds with keybinds.",
"main": "out/main/main.js",
"scripts": {
"build": "npx eslint src && npm run copy && npm run build-tsc && npm run bundle",
"build-tsc": "tsc --build",
"start": "npm run build && electron .",
"startLast": "electron .",
"bundle": "npm run bundle-index && npm run bundle-preload",
"bundle-index": "browserify out/renderer/index.js -o out/renderer/bundle.js --no-bundle-external --debug",
"bundle-preload": "browserify out/shared/preload.js -o out/shared/preload-bundle.js --no-bundle-external",
"copy": "copyfiles \"src/res/**/*\" out -u 1",
"dist": "npm run build && electron-builder -p never",
"pub": "npm run build && electron-builder -p always"
},
"repository": "https://github.com/Tom4nt/Mega-Soundboard",
"author": "Tom4nt <tmsntns@gmail.com>",
"license": "ISC",
"devDependencies": {
"@electron/rebuild": "^3.2.10",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"@types/node": "^22.0.0",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"browserify": "^17.0.0",
"copyfiles": "^2.4.1",
"electron": "^32.0.0",
"electron-builder": "^24.0.0",
"eslint": "^9.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"electron-updater": "^6.3.4",
"typeface-roboto": "^1.0.0",
"uiohook-napi": "^1.5.0"
},
"build": {
"appId": "com.tom4nt.megasoundboard",
"productName": "Mega Soundboard",
"icon": "out/res/img/icon.ico",
"files": [
"out/**/*"
],
"publish": {
"provider": "github",
"owner": "Tom4nt",
"private": "false",
"releaseType": "release"
},
"fileAssociations": {
"ext": "mspkg",
"name": "Mega Soundboard Package",
"description": "Mega Soundboard Package"
},
"linux": {
"category": "AudioVideo",
"icon": "out/res/icons",
"target": "deb"
}
}
}