-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 994 Bytes
/
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
{
"name": "discord-ipc-proxy",
"version": "1.0.0-rc2",
"description": "A tool to analyze communication within Discord's IPC / WebSocket.",
"type": "module",
"main": "dist/main.js",
"scripts": {
"start": "tsc -b tsconfig.main.json && node .",
"build": "tsc -b tsconfig.main.json",
"build-bin": "make",
"bundle": "tsc -b && rollup --config rollup.config.mjs"
},
"bin": {
"discord-ipc-proxy": "bin/discord-ipc-proxy"
},
"keywords": [
"discord",
"ipc",
"reverse-engineering"
],
"author": {
"name": "SpacingBat3",
"email": "[email protected]",
"url": "https://github.com/SpacingBat3"
},
"license": "ISC",
"dependencies": {
"ws": "^8.12.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@tsconfig/strictest": "^2.0.1",
"@types/ws": "^8.5.4",
"postject": "^1.0.0-alpha.6",
"rollup": "^4.9.6",
"typescript": "^5.1.6"
}
}