Files
discord.js/packages/scripts/package.json
Jiralite d44a6f035c chore: bump discord-api-types and undici (#9140)
* chore: update discord-api-types to 0.37.35

* fix: exclude stage channels for now

* chore: update undici

* chore: dedupe undici
2023-02-17 19:17:08 +00:00

73 lines
1.7 KiB
JSON

{
"name": "@discordjs/scripts",
"version": "0.1.0",
"description": "A set of scripts that we use for our workflows",
"private": true,
"scripts": {
"build": "tsup",
"lint": "prettier --check . && cross-env TIMING=1 eslint src --ext .mjs,.js,.ts --format=pretty",
"format": "prettier --write . && cross-env TIMING=1 eslint src --ext .mjs,.js,.ts --fix --format=pretty",
"fmt": "yarn format"
},
"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"
},
"files": [
"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"
},
"bugs": {
"url": "https://github.com/discordjs/discord.js/issues"
},
"homepage": "https://discord.js.org",
"dependencies": {
"@discordjs/api-extractor-utils": "workspace:^",
"@microsoft/api-extractor-model": "7.25.3",
"@microsoft/tsdoc": "0.14.2",
"@microsoft/tsdoc-config": "0.16.2",
"commander": "^9.5.0",
"fs-extra": "^11.1.0",
"tslib": "^2.4.1",
"undici": "^5.19.1",
"yaml": "^2.2.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/node": "16.18.11",
"@vitest/coverage-c8": "^0.27.1",
"cross-env": "^7.0.3",
"eslint": "^8.31.0",
"eslint-config-neon": "^0.1.40",
"eslint-formatter-pretty": "^4.1.0",
"prettier": "^2.8.2",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vitest": "^0.27.1"
},
"engines": {
"node": ">=16.9.0"
}
}