This repository has been archived by the owner on Mar 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.33 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "pulsecord",
"description": "plays a pulseaudio stream through a discord bot, a cursed workaround for discord missing screenshare audio on linux",
"version": "0.0.0",
"private": true,
"author": {
"name": "itsMapleLeaf",
"email": "mapleleafdev0@gmail.com"
},
"homepage": "https://github.com/itsMapleLeaf/pulsecord",
"main": "dist/main/entry.main.js",
"scripts": {
"dev": "cross-env NODE_ENV=development run-p --race --print-label dev:*",
"dev:electron": "nodemon -x electron .",
"dev:vite": "vite",
"dev:tsup": "tsup-node --watch --sourcemap",
"build": "vite build && tsup-node --minify",
"start": "cross-env NODE_ENV=production electron .",
"lint": "eslint --ext js,ts,tsx .",
"lint-fix": "pnpm lint --fix",
"format": "prettier --write .",
"test": "vitest",
"coverage": "vitest --run --coverage",
"typecheck": "tsc --noEmit",
"pack": "pnpm run build && scripts/dist.mjs --dir",
"dist": "pnpm run build && scripts/dist.mjs"
},
"tsup": {
"entry": [
"src/entry.main.ts",
"src/entry.preload.ts"
],
"format": [
"cjs"
],
"target": "node16",
"outDir": "dist/main",
"clean": true
},
"dependencies": {
"@discordjs/voice": "^0.9.0",
"discord.js": "^13.7.0",
"electron-store": "^8.0.1",
"libsodium-wrappers": "^0.7.10",
"opusscript": "^0.0.8",
"pulseaudio.js": "^1.3.0",
"zod": "^3.16.0"
},
"devDependencies": {
"@heroicons/react": "^1.0.6",
"@itsmapleleaf/configs": "^1.1.3",
"@rushstack/eslint-patch": "^1.1.3",
"@types/eslint": "^8.4.2",
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.33",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.2",
"autoprefixer": "^10.4.7",
"c8": "^7.11.2",
"clsx": "^1.1.1",
"cross-env": "^7.0.3",
"electron": "^18.0.4",
"electron-builder": "^23.0.3",
"eslint": "^8.15.0",
"lodash-es": "^4.17.21",
"nodemon": "^2.0.16",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.13",
"prettier": "^2.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-suspense-fetch": "^0.4.1",
"tailwindcss": "^3.0.24",
"tsup": "^5.12.7",
"typescript": "^4.6.3",
"vite": "^2.9.9",
"vitest": "^0.12.6"
},
"prettier": "@itsmapleleaf/configs/prettier"
}