mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
85 lines
2.2 KiB
JSON
85 lines
2.2 KiB
JSON
{
|
|
"name": "@discordjs/builders",
|
|
"version": "0.16.0-dev",
|
|
"description": "A set of builders that you can use when creating your bot",
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"lint": "prettier --check . && eslint src __tests__ --ext mjs,js,ts",
|
|
"format": "prettier --write . && eslint src __tests__ --ext mjs,js,ts --fix",
|
|
"docs": "docgen -i src/index.ts -c docs/index.json -o docs/docs.json --typescript",
|
|
"prepublishOnly": "yarn build && yarn lint && yarn test",
|
|
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/builders/*'",
|
|
"release": "cliff-jumper"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"directories": {
|
|
"lib": "src",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"contributors": [
|
|
"Vlad Frangu <kingdgrizzle@gmail.com>",
|
|
"Crawl <icrawltogo@gmail.com>",
|
|
"Amish Shah <amishshah.2k@gmail.com>",
|
|
"SpaceEEC <spaceeec@yahoo.com>",
|
|
"Antonio Roman <kyradiscord@gmail.com>"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"keywords": [
|
|
"discord",
|
|
"api",
|
|
"bot",
|
|
"client",
|
|
"node",
|
|
"discordapp",
|
|
"discordjs"
|
|
],
|
|
"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": {
|
|
"@sapphire/shapeshift": "^3.2.0",
|
|
"@sindresorhus/is": "^4.6.0",
|
|
"discord-api-types": "^0.33.5",
|
|
"fast-deep-equal": "^3.1.3",
|
|
"ts-mixer": "^6.0.1",
|
|
"tslib": "^2.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@discordjs/docgen": "workspace:^",
|
|
"@discordjs/scripts": "workspace:^",
|
|
"@favware/cliff-jumper": "^1.8.3",
|
|
"@types/node": "^16.11.41",
|
|
"@typescript-eslint/eslint-plugin": "^5.28.0",
|
|
"@typescript-eslint/parser": "^5.28.0",
|
|
"eslint": "^8.18.0",
|
|
"eslint-config-marine": "^9.4.1",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-import-resolver-typescript": "^2.7.1",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"prettier": "^2.7.1",
|
|
"tsup": "^6.1.2",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.9.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|