mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
91 lines
2.7 KiB
JSON
91 lines
2.7 KiB
JSON
{
|
|
"name": "discord.js",
|
|
"version": "12.0.0-dev",
|
|
"description": "A powerful library for interacting with the Discord API",
|
|
"main": "./src/index",
|
|
"types": "./typings/index.d.ts",
|
|
"scripts": {
|
|
"test": "npm run lint && npm run docs:test",
|
|
"docs": "docgen --source src --custom docs/index.yml --output docs/docs.json",
|
|
"docs:test": "docgen --source src --custom docs/index.yml",
|
|
"lint": "eslint src *.js",
|
|
"lint:fix": "eslint --fix src",
|
|
"build:browser": "webpack",
|
|
"prepublishOnly": "npm run test && NODE_ENV=production npm run build:browser"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/discordjs/discord.js.git"
|
|
},
|
|
"keywords": [
|
|
"discord",
|
|
"api",
|
|
"bot",
|
|
"client",
|
|
"node",
|
|
"discordapp"
|
|
],
|
|
"author": "Amish Shah <amishshah.2k@gmail.com>",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/discordjs/discord.js/issues"
|
|
},
|
|
"homepage": "https://github.com/discordjs/discord.js#readme",
|
|
"runkitExampleFilename": "./docs/examples/ping.js",
|
|
"unpkg": "./webpack/discord.min.js",
|
|
"dependencies": {
|
|
"form-data": "^2.3.2",
|
|
"node-fetch": "^2.1.2",
|
|
"pako": "^1.0.0",
|
|
"prism-media": "hydrabolt/prism-media",
|
|
"tweetnacl": "^1.0.0",
|
|
"ws": "^4.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"bufferutil": "^3.0.0",
|
|
"erlpack": "discordapp/erlpack",
|
|
"libsodium-wrappers": "^0.7.0",
|
|
"sodium": "^2.0.0",
|
|
"uws": "^9.14.0",
|
|
"zlib-sync": "^0.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^10.0.3",
|
|
"discord.js-docgen": "discordjs/docgen",
|
|
"eslint": "^5.0.1",
|
|
"json-filter-loader": "^1.0.0",
|
|
"uglifyjs-webpack-plugin": "^1.1.8",
|
|
"webpack": "^4.5.0",
|
|
"webpack-cli": "^3.0.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"browser": {
|
|
"https": false,
|
|
"ws": false,
|
|
"uws": false,
|
|
"erlpack": false,
|
|
"prism-media": false,
|
|
"opusscript": false,
|
|
"node-opus": false,
|
|
"tweetnacl": false,
|
|
"sodium": false,
|
|
"zlib-sync": false,
|
|
"src/sharding/Shard.js": false,
|
|
"src/sharding/ShardClientUtil.js": false,
|
|
"src/sharding/ShardingManager.js": false,
|
|
"src/client/voice/ClientVoiceManager.js": false,
|
|
"src/client/voice/VoiceConnection.js": false,
|
|
"src/client/voice/networking/VoiceUDPClient.js": false,
|
|
"src/client/voice/networking/VoiceWebSocket.js": false,
|
|
"src/client/voice/dispatcher/StreamDispatcher.js": false,
|
|
"src/client/voice/player/AudioPlayer.js": false,
|
|
"src/client/voice/receiver/PacketHandler.js": false,
|
|
"src/client/voice/receiver/Receiver.js": false,
|
|
"src/client/voice/util/Secretbox.js": false,
|
|
"src/client/voice/util/VolumeInterface.js": false,
|
|
"src/client/voice/VoiceBroadcast.js": false
|
|
}
|
|
}
|