mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
76 lines
1.9 KiB
JSON
76 lines
1.9 KiB
JSON
{
|
|
"name": "@discordjs/docgen",
|
|
"version": "0.12.0-dev",
|
|
"description": "The docs.json generator for discord.js and its related projects",
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"lint": "prettier --check . && eslint src --ext mjs,js,ts",
|
|
"format": "prettier --write . && eslint src --ext mjs,js,ts --fix",
|
|
"prepublishOnly": "yarn build && yarn lint && yarn test",
|
|
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/docgen/*'",
|
|
"release": "cliff-jumper"
|
|
},
|
|
"bin": "./dist/index.js",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"directories": {
|
|
"lib": "src"
|
|
},
|
|
"files": [
|
|
"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"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/discordjs/discord.js/issues"
|
|
},
|
|
"homepage": "https://discord.js.org",
|
|
"dependencies": {
|
|
"@discordjs/collection": "^0.7.0",
|
|
"commander": "^9.3.0",
|
|
"jsdoc-to-markdown": "^7.1.1",
|
|
"tslib": "^2.4.0",
|
|
"typedoc": "^0.22.17"
|
|
},
|
|
"devDependencies": {
|
|
"@favware/cliff-jumper": "^1.8.3",
|
|
"@types/jsdoc-to-markdown": "^7.0.3",
|
|
"@types/node": "^16.11.38",
|
|
"@typescript-eslint/eslint-plugin": "^5.27.1",
|
|
"@typescript-eslint/parser": "^5.27.1",
|
|
"eslint": "^8.17.0",
|
|
"eslint-config-marine": "^9.4.1",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"prettier": "^2.6.2",
|
|
"tsup": "^6.1.0",
|
|
"typescript": "^4.7.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.9.0"
|
|
}
|
|
}
|