-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.14 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
{
"name": "valorant-rpc",
"version": "1.1.0",
"description": "Broadcast your Valorant exploits live on Discord with real-time status updates!",
"main": "src/index.ts",
"pkg": {
"assets": [
"node_modules/axios/**/*"
],
"scripts": "build/**/*.js",
"targets": [
"node18-win-x64"
],
"outputPath": "dist"
},
"bin": {
"ValorantRPC": "build/src/index.js"
},
"scripts": {
"start": "node build/index.js",
"dev": "nodemon src/index.ts",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"build": "npm run clean && tsc --outDir build",
"package": "npm run build && pkg package.json"
},
"keywords": [
"rich-presence",
"discord",
"valorant",
"riot-games",
"rpc",
"advanced",
"custom"
],
"author": "smarterToby",
"license": "MIT",
"devDependencies": {
"@types/discord-rpc": "^4.0.8",
"@types/node": "20.11.1",
"gts": "^5.2.0",
"nodemon": "^3.0.2",
"pkg": "^5.8.1",
"ts-node": "^10.9.2",
"typescript": "~5.2.0"
},
"dependencies": {
"axios": "^1.6.5",
"discord-rpc": "^4.0.1"
}
}