mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
64 lines
1.5 KiB
JSON
64 lines
1.5 KiB
JSON
{
|
|
"name": "@discordjs/proxy-container",
|
|
"version": "0.1.0-dev",
|
|
"description": "Lightweight HTTP proxy for Discord's API, brought to you as a container 📦",
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"lint": "prettier --check . && eslint src --ext mjs,js,ts",
|
|
"format": "prettier --write . && eslint src --ext mjs,js,ts --fix",
|
|
"prepack": "yarn build && yarn lint",
|
|
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/proxy-container/*'"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"type": "module",
|
|
"directories": {
|
|
"lib": "src"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"contributors": [
|
|
"Crawl <icrawltogo@gmail.com>",
|
|
"Amish Shah <amishshah.2k@gmail.com>",
|
|
"SpaceEEC <spaceeec@yahoo.com>",
|
|
"Vlad Frangu <kingdgrizzle@gmail.com>",
|
|
"Antonio Roman <kyradiscord@gmail.com>",
|
|
"DD <didinele.dev@gmail.com>"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"keywords": [
|
|
"discord",
|
|
"api",
|
|
"rest",
|
|
"proxy",
|
|
"discordapp",
|
|
"discordjs"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/discordjs/discord.js.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/discordjs/discord.js/issues"
|
|
},
|
|
"homepage": "https://discord.js.org",
|
|
"dependencies": {
|
|
"@discordjs/proxy": "^1.0.0-dev",
|
|
"@discordjs/rest": "^0.5.0",
|
|
"tslib": "^2.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.45",
|
|
"eslint": "^8.20.0",
|
|
"prettier": "^2.7.1",
|
|
"tsup": "^6.1.3",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.9.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|