mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
* fix(ExceptText): don't display import("d..-types/v10"). in return type
* Squashed 'packages/api-extractor-model/' content from commit 39ecb196c
git-subtree-dir: packages/api-extractor-model
git-subtree-split: 39ecb196ca210bdf84ba6c9cadb1bb93571849d7
* Squashed 'packages/api-extractor/' content from commit 341ad6c51
git-subtree-dir: packages/api-extractor
git-subtree-split: 341ad6c51b01656d4f73b74ad4bdb3095f9262c4
* feat(api-extractor): add api-extractor and -model
* fix: package.json docs script
* fix(SourcLink): use <> instead of function syntax
* fix: make packages private
* fix: rest params showing in docs, added labels
* fix: missed two files
* fix: cpy-cli & pnpm-lock
* fix: increase icon size
* fix: icon size again
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "@discordjs/api-extractor-model",
|
|
"version": "7.28.2",
|
|
"description": "A helper library for loading and saving the .api.json files created by API Extractor",
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/discordjs/discord.js.git",
|
|
"directory": "packages/api-extractor-model"
|
|
},
|
|
"homepage": "https://discord.js.org",
|
|
"license": "MIT",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc --noEmit && tsup",
|
|
"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": {
|
|
"@microsoft/tsdoc": "0.14.2",
|
|
"@microsoft/tsdoc-config": "0.16.2",
|
|
"@rushstack/node-core-library": "3.61.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.18.8",
|
|
"@types/jest": "^29.5.7",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.53.0",
|
|
"eslint-config-neon": "^0.1.57",
|
|
"eslint-formatter-pretty": "^5.0.0",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.0.3",
|
|
"tsup": "^7.2.0",
|
|
"turbo": "^1.10.16"
|
|
}
|
|
}
|