discord.js/package.json

89 lines
2.4 KiB
JSON
Raw Permalink Normal View History

2016-08-14 01:44:49 +12:00
{
"name": "discord.js",
2022-05-13 21:44:37 +12:00
"version": "13.7.0",
2016-11-13 15:50:17 +13:00
"description": "A powerful library for interacting with the Discord API",
2016-08-14 01:44:49 +12:00
"scripts": {
2021-10-28 13:01:19 +13:00
"test": "npm run lint && npm run docs:test && npm run lint:typings && npm run test:typescript",
"test:typescript": "tsc --noEmit && tsd",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"lint:typings": "tslint typings/index.d.ts",
2021-10-28 13:01:19 +13:00
"format": "prettier --write src/**/*.js typings/**/*.ts",
"prepare": "is-ci || husky install",
2021-10-28 13:01:19 +13:00
"docs": "docgen --source src --custom docs/index.yml --output docs/docs.json",
"docs:test": "docgen --source src --custom docs/index.yml",
"prepublishOnly": "npm run test",
2022-05-13 21:44:37 +12:00
"changelog": "git cliff --prepend CHANGELOG.md -u"
2016-08-14 01:44:49 +12:00
},
2021-10-28 13:01:19 +13:00
"main": "./src/index.js",
"types": "./typings/index.d.ts",
"files": [
"src",
"typings"
],
"directories": {
"lib": "src",
"test": "test"
2016-08-14 01:44:49 +12:00
},
2021-10-28 13:01:19 +13:00
"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>"
2021-10-28 13:01:19 +13:00
],
"license": "Apache-2.0",
2016-08-14 01:44:49 +12:00
"keywords": [
"discord",
"api",
"bot",
"client",
"node",
"discordapp"
],
2021-10-28 13:01:19 +13:00
"repository": {
"type": "git",
"url": "https://github.com/discordjs/discord.js.git"
},
2016-08-14 01:44:49 +12:00
"bugs": {
2018-01-19 08:40:02 +13:00
"url": "https://github.com/discordjs/discord.js/issues"
2016-08-14 01:44:49 +12:00
},
"homepage": "https://discord.js.org",
2016-08-14 01:44:49 +12:00
"dependencies": {
2022-05-13 21:44:37 +12:00
"@discordjs/builders": "^0.13.0",
"@discordjs/collection": "^0.6.0",
"@sapphire/async-queue": "^1.3.1",
"@types/node-fetch": "^2.6.1",
"@types/ws": "^8.5.3",
"discord-api-types": "^0.30.0",
2021-12-25 00:21:53 +13:00
"form-data": "^4.0.0",
2020-09-13 22:48:53 +12:00
"node-fetch": "^2.6.1",
2022-05-13 21:44:37 +12:00
"ws": "^8.6.0"
},
2016-08-14 01:44:49 +12:00
"devDependencies": {
2022-05-13 21:44:37 +12:00
"@commitlint/cli": "^16.2.4",
"@commitlint/config-angular": "^16.2.4",
"@discordjs/docgen": "^0.11.1",
2021-10-06 03:09:40 +13:00
"@favware/npm-deprecate": "^1.0.4",
2021-12-08 22:53:37 +13:00
"@types/node": "^16.11.12",
2021-12-29 23:19:20 +13:00
"conventional-changelog-cli": "^2.2.2",
2021-11-30 07:32:26 +13:00
"dtslint": "^4.2.1",
2022-05-13 21:44:37 +12:00
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
2021-10-06 03:09:40 +13:00
"eslint-plugin-prettier": "^4.0.0",
2022-05-13 21:44:37 +12:00
"husky": "^8.0.1",
2021-10-28 13:01:19 +13:00
"is-ci": "^3.0.1",
2022-05-13 21:44:37 +12:00
"jest": "^28.1.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"tsd": "^0.20.0",
2020-08-15 07:46:23 +12:00
"tslint": "^6.1.3",
2022-05-13 21:44:37 +12:00
"typescript": "^4.6.4"
2016-08-14 01:44:49 +12:00
},
"engines": {
2021-08-06 11:25:20 +12:00
"node": ">=16.6.0",
2021-05-25 06:58:42 +12:00
"npm": ">=7.0.0"
2016-08-14 01:44:49 +12:00
}
}