mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
fix: undici bumping to 6.21.1 Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
93 lines
2.3 KiB
JSON
93 lines
2.3 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "@discordjs/scripts",
|
|
"version": "0.1.0",
|
|
"description": "A set of scripts that we use for our workflows",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc --noEmit --lib ESNext,DOM && tsup",
|
|
"lint": "prettier --check . && cross-env TIMING=1 eslint --format=pretty src turbo/generators/config.ts",
|
|
"format": "prettier --write . && cross-env TIMING=1 eslint --fix --format=pretty src turbo/generators/config.ts",
|
|
"fmt": "pnpm run format"
|
|
},
|
|
"bin": {
|
|
"generate-split-documentation": "./bin/generateSplitDocumentation.js",
|
|
"sort-labels": "./bin/sortLabels.js"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"require": {
|
|
"types": "./dist/src/index.d.ts",
|
|
"default": "./dist/src/index.js"
|
|
},
|
|
"import": {
|
|
"types": "./dist/src/index.d.mts",
|
|
"default": "./dist/src/index.mjs"
|
|
}
|
|
}
|
|
},
|
|
"main": "./dist/src/index.js",
|
|
"module": "./dist/src/index.mjs",
|
|
"types": "./dist/src/index.d.ts",
|
|
"directories": {
|
|
"bin": "bin",
|
|
"lib": "src",
|
|
"example": "turbo"
|
|
},
|
|
"files": [
|
|
"bin/generateSplitDocumentation.js",
|
|
"dist"
|
|
],
|
|
"contributors": [
|
|
"Crawl <icrawltogo@gmail.com>"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"keywords": [
|
|
"api",
|
|
"bot",
|
|
"client",
|
|
"node",
|
|
"discordjs"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/discordjs/discord.js.git",
|
|
"directory": "packages/scripts"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/discordjs/discord.js/issues"
|
|
},
|
|
"homepage": "https://discord.js.org",
|
|
"funding": "https://github.com/discordjs/discord.js?sponsor",
|
|
"dependencies": {
|
|
"@actions/glob": "^0.5.0",
|
|
"@discordjs/api-extractor-model": "workspace:^",
|
|
"@discordjs/api-extractor-utils": "workspace:^",
|
|
"@microsoft/tsdoc": "0.14.2",
|
|
"@microsoft/tsdoc-config": "0.16.2",
|
|
"@vercel/blob": "^0.23.4",
|
|
"@vercel/postgres": "^0.9.0",
|
|
"commander": "^12.1.0",
|
|
"tslib": "^2.8.1",
|
|
"undici": "6.21.1",
|
|
"yaml": "^2.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@turbo/gen": "^2.3.3",
|
|
"@types/node": "^22.10.10",
|
|
"@vitest/coverage-v8": "^2.1.8",
|
|
"cross-env": "^7.0.3",
|
|
"env-cmd": "^10.1.0",
|
|
"eslint": "^8.57.1",
|
|
"eslint-config-neon": "^0.1.62",
|
|
"eslint-formatter-pretty": "^6.0.1",
|
|
"prettier": "^3.4.2",
|
|
"tsup": "^8.3.5",
|
|
"turbo": "^2.3.3",
|
|
"typescript": "~5.5.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=22.12.0"
|
|
}
|
|
}
|