mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 08:03:30 +01:00
* build: upgrade dependencies * build: upgrade pnpm * test: fix voice * build: regenerate file * fix: reports by ESLint * fix: docs errors * build: downgrades * build: no upstream bump * build: discord-api-types 0.38.40 * build: pnpm 10.30.1 * fix: ignore @typescript-eslint/no-duplicate-type-constituents * fix: jsdoc lint in api-extractor * build: update template for ESLint Co-authored-by: Almeida <github@almeidx.dev> * chore: explicit TODO Co-authored-by: Qjuh <76154676+Qjuh@users.noreply.github.com> * chore: revert typings lint change --------- Co-authored-by: Qjuh <76154676+Qjuh@users.noreply.github.com> Co-authored-by: Almeida <github@almeidx.dev>
73 lines
1.8 KiB
JSON
73 lines
1.8 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "@discordjs/proxy-container",
|
|
"version": "1.0.0",
|
|
"description": "Lightweight HTTP proxy for Discord's API, brought to you as a container 📦",
|
|
"scripts": {
|
|
"build": "tsc --noEmit && tsup",
|
|
"lint": "prettier --check . && cross-env TIMING=1 eslint --format=pretty src",
|
|
"format": "prettier --write . && cross-env TIMING=1 eslint --fix --format=pretty src",
|
|
"fmt": "pnpm run format",
|
|
"prepack": "pnpm run lint && pnpm run build"
|
|
},
|
|
"type": "module",
|
|
"directories": {
|
|
"lib": "src"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"contributors": [
|
|
"Crawl <icrawltogo@gmail.com>",
|
|
"Amish Shah <amishshah.2k@gmail.com>",
|
|
"SpaceEEC <spaceeec@yahoo.com>",
|
|
"Vlad Frangu <me@vladfrangu.dev>",
|
|
"Aura Román <kyradiscord@gmail.com>",
|
|
"DD <didinele.dev@gmail.com>"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"keywords": [
|
|
"discord",
|
|
"api",
|
|
"rest",
|
|
"proxy",
|
|
"discordapp",
|
|
"discordjs"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/discordjs/discord.js.git",
|
|
"directory": "packages/proxy-container"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/discordjs/discord.js/issues"
|
|
},
|
|
"homepage": "https://discord.js.org",
|
|
"funding": "https://github.com/discordjs/discord.js?sponsor",
|
|
"dependencies": {
|
|
"@discordjs/proxy": "workspace:^",
|
|
"@discordjs/rest": "workspace:^",
|
|
"tslib": "^2.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.10.13",
|
|
"cross-env": "^10.1.0",
|
|
"eslint": "^9.39.2",
|
|
"eslint-config-neon": "^0.3.2",
|
|
"eslint-formatter-compact": "^9.0.1",
|
|
"eslint-formatter-pretty": "^7.0.0",
|
|
"prettier": "^3.8.1",
|
|
"terser": "^5.46.0",
|
|
"tsup": "^8.5.1",
|
|
"turbo": "^2.8.10",
|
|
"typescript": "~5.9.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=22.12.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"provenance": true
|
|
}
|
|
}
|