-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.48 KB
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
{
"name": "discord-join-requests",
"version": "0.0.1",
"description": "Unofficial Discord join-requests modules.",
"keywords": [
"discord",
"selfbot",
"join",
"join-requests",
"api",
"ws",
"websocket",
"rest"
],
"homepage": "https://github.com/otnc/discord-join-requests#readme",
"bugs": {
"url": "https://github.com/otnc/discord-join-requests/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otnc/discord-join-requests.git"
},
"license": "MIT",
"author": "otoneko.",
"type": "commonjs",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"README-ja.md",
"LICENSE"
],
"scripts": {
"build": "tsdown",
"test": "echo \"PASSED: no test specified\" && exit 0",
"format": "prettier --write ./src/**"
},
"dependencies": {
"undici": "^8.1.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/node": "^22.19.17",
"@types/ws": "^8.18.1",
"discord.js-selfbot-v13": "^3.7.1",
"discord.js-selfbot-youtsuho-v13": "^3.7.2",
"prettier": "^3.8.3",
"tsdown": "^0.21.8",
"typescript": "^6.0.2"
},
"engines": {
"node": ">=22.19.0"
}
}