-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 850 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 850 Bytes
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
{
"name": "custom-rpc",
"private": true,
"version": "0.0.0",
"description": "Set custom Discord Rich Presence via Remote Procedure Calls",
"homepage": "https://github.com/ackledotdev/custom-rpc#readme",
"bugs": {
"url": "https://github.com/ackledotdev/custom-rpc/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ackledotdev/custom-rpc.git"
},
"license": "MIT",
"author": "Akhil Pillai <ackledotdev@gmail.com>",
"type": "module",
"scripts": {
"start": "tsx src/index.ts",
"build": "npm run fmt && tsc",
"fmt": "prettier --write .",
"up": "npx ncu -ui"
},
"dependencies": {
"@xhayper/discord-rpc": "^1.3.0",
"jsonc-parser": "^3.3.1"
},
"devDependencies": {
"@types/node": "^25.2.2",
"npm-check-updates": "^19.3.2",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}