mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 00:53:31 +01:00
79 lines
2.2 KiB
JSON
79 lines
2.2 KiB
JSON
{
|
|
"name": "discord.js",
|
|
"version": "14.0.0-dev",
|
|
"description": "A powerful library for interacting with the Discord API",
|
|
"scripts": {
|
|
"test": "yarn docs:test && yarn test:typescript",
|
|
"test:typescript": "tsc --noEmit && tsd",
|
|
"lint": "prettier --check . && eslint src && tslint typings/index.d.ts",
|
|
"format": "prettier --write . && eslint src --fix",
|
|
"docs": "docgen --source ./src --custom ./docs/index.yml --root ../../ --output ./docs/docs.json",
|
|
"docs:test": "docgen --source ./src --custom ./docs/index.yml --root ../../",
|
|
"prepublishOnly": "yarn lint && yarn test",
|
|
"changelog": "git cliff --prepend ./CHANGELOG.md -l -c ./cliff.toml -r ../../ --include-path 'packages/discord.js/*'"
|
|
},
|
|
"main": "./src/index.js",
|
|
"types": "./typings/index.d.ts",
|
|
"directories": {
|
|
"lib": "src",
|
|
"test": "test"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"typings"
|
|
],
|
|
"contributors": [
|
|
"Crawl <icrawltogo@gmail.com>",
|
|
"Amish Shah <amishshah.2k@gmail.com>",
|
|
"Vlad Frangu <kingdgrizzle@gmail.com>",
|
|
"SpaceEEC <spaceeec@yahoo.com>",
|
|
"Antonio Roman <kyradiscord@gmail.com>"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"keywords": [
|
|
"discord",
|
|
"api",
|
|
"bot",
|
|
"client",
|
|
"node",
|
|
"discordapp"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/discordjs/discord.js.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/discordjs/discord.js/issues"
|
|
},
|
|
"homepage": "https://discord.js.org",
|
|
"dependencies": {
|
|
"@discordjs/builders": "workspace:^",
|
|
"@discordjs/collection": "workspace:^",
|
|
"@discordjs/rest": "workspace:^",
|
|
"@sapphire/snowflake": "^3.1.0",
|
|
"@types/ws": "^8.2.2",
|
|
"discord-api-types": "^0.26.1",
|
|
"node-fetch": "^2.6.7",
|
|
"ws": "^8.4.2"
|
|
},
|
|
"devDependencies": {
|
|
"@discordjs/docgen": "^0.11.0",
|
|
"@types/node": "^16.11.12",
|
|
"dtslint": "^4.2.1",
|
|
"eslint": "^8.8.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-import": "^2.25.4",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"husky": "^7.0.4",
|
|
"is-ci": "^3.0.1",
|
|
"jest": "^27.4.7",
|
|
"prettier": "^2.5.1",
|
|
"tsd": "^0.19.0",
|
|
"tslint": "^6.1.3",
|
|
"typescript": "^4.5.5"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.9.0"
|
|
}
|
|
}
|