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
* feat: merge docs.json from docgen and docs.api.json
* fix: cpy-cli & pnpm-lock
* fix: increase icon size
* fix: icon size again
* feat: run both docs on mainlib
* chore: website fixes
* fix: more website fixes
* fix: tests and dev database script
* chore: comment out old docs
* fix: increase max fetch cache
* fix: env should always be a string
* fix: try to reapply patches
* fix: remove prepare for docgen
* fix: temporary cosmetic fixes
* fix: horizontal scroll
* feat: generate index for new docs
---------
Co-authored-by: Noel <buechler.noel@outlook.com>
85 lines
1.9 KiB
JSON
85 lines
1.9 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 --skipLibCheck && tsup",
|
|
"lint": "prettier --check . && cross-env TIMING=1 eslint --format=pretty src turbo",
|
|
"format": "prettier --write . && cross-env TIMING=1 eslint --fix --format=pretty src turbo",
|
|
"fmt": "pnpm run format"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"require": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"import": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
}
|
|
}
|
|
},
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"directories": {
|
|
"lib": "src",
|
|
"example": "turbo"
|
|
},
|
|
"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",
|
|
"directory": "packages/scripts"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/discordjs/discord.js/issues"
|
|
},
|
|
"homepage": "https://discord.js.org",
|
|
"dependencies": {
|
|
"@actions/glob": "^0.4.0",
|
|
"@discordjs/api-extractor-model": "workspace:^",
|
|
"@discordjs/api-extractor-utils": "workspace:^",
|
|
"@microsoft/tsdoc": "0.14.2",
|
|
"@microsoft/tsdoc-config": "0.16.2",
|
|
"@planetscale/database": "^1.11.0",
|
|
"tslib": "^2.6.2",
|
|
"undici": "5.27.2",
|
|
"yaml": "2.3.4"
|
|
},
|
|
"devDependencies": {
|
|
"@turbo/gen": "^1.10.16",
|
|
"@types/node": "18.18.8",
|
|
"@vitest/coverage-v8": "^0.34.6",
|
|
"cross-env": "^7.0.3",
|
|
"env-cmd": "^10.1.0",
|
|
"eslint": "^8.53.0",
|
|
"eslint-config-neon": "^0.1.57",
|
|
"eslint-formatter-pretty": "^5.0.0",
|
|
"prettier": "^3.0.3",
|
|
"tsup": "^7.2.0",
|
|
"turbo": "^1.10.16",
|
|
"typescript": "^5.2.2",
|
|
"vitest": "^0.34.6"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|