-
Notifications
You must be signed in to change notification settings - Fork 172
/
package.json
96 lines (96 loc) · 2.82 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "discord.js-selfbot-v13",
"version": "3.4.2",
"description": "A unofficial discord.js fork for creating selfbots [Based on discord.js v13]",
"main": "./src/index.js",
"types": "./typings/index.d.ts",
"scripts": {
"all": "npm run build && npm publish",
"test": "npm run lint:all && npm run docs:test && npm run test:typescript",
"fix:all": "npm run lint:fix && npm run lint:typings:fix && npm run format",
"test:typescript": "tsc --noEmit && tsd",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:typings": "tslint typings/index.d.ts",
"lint:typings:fix": "tslint typings/index.d.ts --fix",
"format": "prettier --write src/**/*.js typings/**/*.ts",
"lint:all": "npm run lint && npm run lint:typings",
"docs": "docgen --source src --custom docs/index.yml --output docs/main.json",
"docs:test": "docgen --source src --custom docs/index.yml",
"build": "npm run lint:fix && npm run lint:typings:fix && npm run format && npm run docs"
},
"files": [
"src",
"typings"
],
"directories": {
"lib": "src",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aiko-chan-ai/discord.js-selfbot-v13.git"
},
"keywords": [
"discord.js",
"discord.js v13",
"selfbot",
"selfbot v13",
"djs",
"api",
"bot",
"node",
"discord",
"client",
"discordapp"
],
"author": "aiko-chan-ai",
"license": "GNU General Public License v3.0",
"bugs": {
"url": "https://github.com/aiko-chan-ai/discord.js-selfbot-v13/issues"
},
"homepage": "https://github.com/aiko-chan-ai/discord.js-selfbot-v13#readme",
"dependencies": {
"@discordjs/builders": "^1.6.3",
"@discordjs/collection": "^1.5.3",
"@sapphire/async-queue": "^1.5.3",
"@sapphire/shapeshift": "^3.9.5",
"discord-api-types": "^0.37.103",
"fetch-cookie": "^2.1.0",
"find-process": "^1.4.7",
"form-data": "^4.0.1",
"node-fetch": "^2.6.9",
"prism-media": "^1.3.5",
"qrcode": "^1.5.4",
"tough-cookie": "^4.1.4",
"tree-kill": "^1.2.2",
"ws": "^8.16.0"
},
"engines": {
"node": ">=16.6.0",
"npm": ">=7.0.0"
},
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-angular": "^16.0.0",
"@discordjs/docgen": "^0.11.1",
"@favware/npm-deprecate": "^1.0.7",
"@types/node": "^20.14.12",
"@types/node-fetch": "^2.6.11",
"@types/ws": "^8.5.10",
"conventional-changelog-cli": "^2.2.2",
"dtslint": "^4.2.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"jest": "^28.1.3",
"lint-staged": "^12.1.4",
"prettier": "^2.8.8",
"tsd": "^0.28.1",
"tslint": "^6.1.3",
"typescript": "^5.5.4"
}
}