Files
discord.js/packages/api-extractor/package.json
Almeida 06c8da23d1 chore: update deps & search indice action refactor (#11339)
* chore: update deps & search indice action refactor

- Updated pnpm, dependencies and regenerated the lockfile
- Removed immer and some eslint plugins that weren't being used
- Updated the version of `@types/node` to v24 on internal packages as
  that's the version that is being used on github actions
- Refactored the uploadSearchIndices action slightly and upgraded the
  meilisearch dependency

* chore: remove more deps
2025-12-09 13:47:46 +01:00

82 lines
2.0 KiB
JSON

{
"name": "@discordjs/api-extractor",
"version": "7.52.7",
"description": "Analyze the exported API for a TypeScript library and generate reviews, documentation, and .d.ts rollups",
"private": true,
"keywords": [
"typescript",
"API",
"JSDoc",
"AEDoc",
"TSDoc",
"generate",
"documentation",
"declaration",
"dts",
".d.ts",
"rollup",
"bundle",
"compiler",
"alpha",
"beta"
],
"repository": {
"type": "git",
"url": "https://github.com/discordjs/discord.js.git",
"directory": "packages/api-extractor"
},
"homepage": "https://discord.js.org",
"funding": "https://github.com/discordjs/discord.js?sponsor",
"bin": {
"api-extractor": "./bin/api-extractor"
},
"license": "MIT",
"scripts": {
"build": "tsc --noEmit && tsup && pnpm run copy-files",
"copy-files": "cpy \"src/schemas/*.json\" \"dist/schemas\" && cpy \"extends/*.json\" \"dist/extends\"",
"lint": "prettier --check . && cross-env TIMING=1 eslint --format=pretty src",
"format": "prettier --write . && cross-env TIMING=1 eslint --fix --format=pretty src"
},
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"dependencies": {
"@discordjs/api-extractor-model": "workspace:^",
"@microsoft/tsdoc": "~0.15.1",
"@microsoft/tsdoc-config": "~0.17.1",
"@rushstack/node-core-library": "5.13.1",
"@rushstack/ts-command-line": "5.0.1",
"colors": "~1.4.0",
"lodash": "~4.17.21",
"resolve": "~1.22.11",
"semver": "~7.6.3",
"source-map": "~0.6.1",
"typescript": "~5.5.4"
},
"devDependencies": {
"@types/lodash": "^4.17.21",
"@types/node": "^24.10.1",
"@types/resolve": "^1.20.6",
"@types/semver": "^7.7.1",
"cpy-cli": "^6.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.1",
"eslint-config-neon": "^0.2.9",
"eslint-formatter-compact": "^9.0.1",
"eslint-formatter-pretty": "^7.0.0",
"prettier": "^3.7.4",
"terser": "^5.44.1",
"tsup": "^8.5.1",
"turbo": "^2.6.3"
}
}