Files
discord.js/packages/docgen/package.json
2025-04-05 13:18:56 +02:00

90 lines
2.1 KiB
JSON

{
"$schema": "https://json.schemastore.org/package.json",
"name": "@discordjs/docgen",
"version": "0.12.1",
"description": "The docs.json generator for discord.js and its related projects",
"scripts": {
"build": "tsup",
"lint": "prettier --check . && cross-env TIMING=1 eslint --format=pretty src",
"format": "prettier --write . && cross-env TIMING=1 eslint --fix --format=pretty src",
"fmt": "pnpm run format",
"prepack": "pnpm run format && pnpm run build"
},
"bin": "./bin/index.js",
"exports": {
".": {
"require": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
},
"import": {
"types": "./dist/src/index.d.mts",
"default": "./dist/src/index.mjs"
}
}
},
"main": "./dist/src/index.js",
"module": "./dist/src/index.mjs",
"types": "./dist/src/index.d.ts",
"directories": {
"bin": "bin",
"lib": "src"
},
"files": [
"bin/index.js",
"dist"
],
"contributors": [
"Crawl <icrawltogo@gmail.com>",
"Amish Shah <amishshah.2k@gmail.com>",
"Schuyler Cebulskie <Gawdl3y@Gawdl3y.com>"
],
"license": "Apache-2.0",
"keywords": [
"documentation",
"docs",
"generator",
"docgen",
"docsgen",
"node",
"discordjs"
],
"repository": {
"type": "git",
"url": "https://github.com/discordjs/discord.js.git",
"directory": "packages/docgen"
},
"bugs": {
"url": "https://github.com/discordjs/discord.js/issues"
},
"homepage": "https://discord.js.org",
"funding": "https://github.com/discordjs/discord.js?sponsor",
"dependencies": {
"commander": "^13.1.0",
"jsdoc-to-markdown": "^8.0.3",
"tslib": "^2.8.1",
"typedoc": "^0.25.13"
},
"devDependencies": {
"@favware/cliff-jumper": "^4.1.0",
"@types/jsdoc-to-markdown": "^7.0.6",
"@types/node": "^22.14.0",
"cross-env": "^7.0.3",
"eslint": "^9.24.0",
"eslint-config-neon": "^0.2.7",
"eslint-formatter-compact": "^8.40.0",
"eslint-formatter-pretty": "^6.0.1",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"turbo": "^2.5.0",
"typescript": "~5.8.3"
},
"engines": {
"node": ">=22.12.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}