discord.js-selfbot-v13/package.json

99 lines
2.9 KiB
JSON
Raw Normal View History

2022-03-19 10:37:45 +00:00
{
"name": "discord.js-selfbot-v13",
"version": "2.6.4",
2022-03-19 10:37:45 +00:00
"description": "A unofficial discord.js fork for creating selfbots [Based on discord.js v13]",
"main": "./src/index.js",
"types": "./typings/index.d.ts",
2022-03-19 12:06:13 +00:00
"scripts": {
2022-06-06 04:21:36 +00:00
"all": "npm run lint:fix && npm run lint:typings:fix && npm run fix:all && npm run build",
"test": "npm run lint:all && npm run docs:test && npm run test:typescript",
2022-05-14 08:06:15 +00:00
"fix:all": "npm run lint:fix && npm run lint:typings:fix && npm run format",
2022-05-06 14:17:20 +00:00
"test:typescript": "tsc --noEmit && tsd",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:typings": "tslint typings/index.d.ts",
2022-04-16 12:01:05 +00:00
"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",
2022-05-06 15:28:51 +00:00
"docs": "docgen --source src --custom docs/index.yml --output docs/main.json",
2022-05-11 13:19:04 +00:00
"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"
2022-03-19 12:06:13 +00:00
},
2022-03-19 10:37:45 +00:00
"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",
2022-03-19 10:52:50 +00:00
"discord.js v13",
2022-03-19 10:37:45 +00:00
"selfbot",
2022-03-19 10:52:50 +00:00
"selfbot v13",
2022-03-19 10:37:45 +00:00
"djs",
"api",
"bot",
2022-03-26 13:55:05 +00:00
"node",
"discord",
"client",
"discordapp"
2022-03-19 10:37:45 +00:00
],
"author": "aiko-chan-ai",
2022-04-01 05:26:16 +00:00
"license": "GNU General Public License v3.0",
2022-03-19 10:37:45 +00:00
"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": {
2022-07-22 03:58:56 +00:00
"@aikochan2k6/qrcode-terminal": "^0.12.1",
2022-08-01 05:43:21 +00:00
"@discordjs/builders": "^1.1.0",
"@discordjs/collection": "^1.0.0",
"@discordjs/voice": "^0.11.0",
2022-08-09 03:43:30 +00:00
"@sapphire/async-queue": "^1.4.0",
"@sapphire/shapeshift": "^3.5.1",
"@types/node-fetch": "^2.6.2",
"@types/ws": "^8.5.3",
"axios": "^0.27.2",
2022-08-09 03:43:30 +00:00
"bignumber.js": "^9.1.0",
"chalk": "^4.1.2",
2022-08-14 10:16:51 +00:00
"discord-api-types": "^0.37.2",
2022-03-19 10:37:45 +00:00
"form-data": "^4.0.0",
"json-bigint": "^1.0.0",
"node-fetch": "^2.6.1",
2022-05-03 05:29:10 +00:00
"safe-base64": "^2.0.1-0",
"string_decoder": "^1.3.0",
"ws": "^8.8.1"
2022-03-19 10:37:45 +00:00
},
"engines": {
2022-03-26 13:55:05 +00:00
"node": ">=16.6.0",
2022-03-19 10:37:45 +00:00
"npm": ">=7.0.0"
2022-03-19 12:06:13 +00:00
},
"devDependencies": {
2022-04-16 10:54:24 +00:00
"@commitlint/cli": "^16.0.1",
"@commitlint/config-angular": "^16.0.0",
2022-05-06 14:17:20 +00:00
"@discordjs/docgen": "^0.11.1",
2022-04-16 10:54:24 +00:00
"@favware/npm-deprecate": "^1.0.4",
"@types/node": "^16.11.12",
"conventional-changelog-cli": "^2.2.2",
"dtslint": "^4.2.1",
2022-08-14 10:16:51 +00:00
"eslint": "^8.22.0",
2022-04-16 10:54:24 +00:00
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
2022-08-20 10:59:29 +00:00
"eslint-plugin-prettier": "^4.2.1",
2022-04-16 10:54:24 +00:00
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"jest": "^28.1.3",
2022-04-16 10:54:24 +00:00
"lint-staged": "^12.1.4",
"prettier": "^2.5.1",
"tsd": "^0.22.0",
2022-04-16 10:54:24 +00:00
"tslint": "^6.1.3",
"typescript": "^4.5.4"
2022-03-19 10:37:45 +00:00
}
2022-03-19 12:06:13 +00:00
}