mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 00:23:30 +01:00
* feat(api-extractor): support multiple entrypoints * chore: initial support in generateSplitDocumentation * chore: bring in line with upstream * refactor: multiple entrypoints in scripts * fix: split docs * feat: website * fix: docs failing on next * fix: don't include dtypes for now * refactor: don't fetch entrypoint if there is none --------- Co-authored-by: iCrawl <buechler.noel@outlook.com>
82 lines
2.0 KiB
JSON
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.10",
|
|
"semver": "~7.6.3",
|
|
"source-map": "~0.6.1",
|
|
"typescript": "~5.5.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/lodash": "^4.17.16",
|
|
"@types/node": "^22.15.2",
|
|
"@types/resolve": "^1.20.6",
|
|
"@types/semver": "^7.7.0",
|
|
"cpy-cli": "^5.0.0",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^9.25.1",
|
|
"eslint-config-neon": "^0.2.7",
|
|
"eslint-formatter-compact": "^8.40.0",
|
|
"eslint-formatter-pretty": "^6.0.1",
|
|
"prettier": "^3.5.3",
|
|
"terser": "^5.39.0",
|
|
"tsup": "^8.4.0",
|
|
"turbo": "^2.5.2"
|
|
}
|
|
}
|