expodoc
Version:
A tool to generate API documentation automatically for Express.js applications.
88 lines (87 loc) • 2.77 kB
JSON
{
"author": "Jubyer Ahmed Shezan",
"bin": {
"expodoc": "./dist/cli/index.js"
},
"bugs": {
"url": "https://github.com/jashezan/expodoc/issues"
},
"contributes": {
"biome.check": {
"command": "biome check .",
"description": "Check the code for errors and warnings."
},
"biome.format": {
"command": "biome format .",
"description": "Format the code according to the style guide."
},
"biome.lint": {
"command": "biome lint .",
"description": "Lint the code for potential issues."
}
},
"contributors": ["Jubyer Ahmed Shezan <jashezan@gmail.com>"],
"description": "A tool to generate API documentation automatically for Express.js applications.",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"displayName": "expodoc",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"homepage": {
"type": "git",
"url": "https://github.com/jashezan/expodoc"
},
"keywords": [
"express",
"postman",
"documentation",
"api",
"docgen",
"typescript",
"cli",
"expodoc",
"expressjs",
"express-api"
],
"license": "MIT",
"name": "expodoc",
"pricing": "Free",
"private": false,
"publisher": "Jubyer Ahmed Shezan",
"repository": {
"type": "git",
"url": "https://github.com/jashezan/expodoc.git"
},
"scripts": {
"build": "rm -rf dist && tsc",
"build:gen": "tsc",
"check": "biome check .",
"check:fix": "biome check --fix .",
"clear": "rm -rf dist && rm -rf node_modules",
"format": "biome format .",
"format:fix": "biome format --write .",
"help": "tsc && node ./dist/cli/index.js --help",
"init": "tsc && node ./dist/cli/index.js --init",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"postman": "tsc && node ./dist/cli/index.js --postman",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"print": "tsc && node ./dist/cli/index.js --print",
"release": "changeset publish",
"validate": "biome format --write . && biome lint --write . && biome check --write .",
"version": "tsc && node ./dist/cli/index.js --version",
"version-packages": "changeset version"
},
"trustedDependencies": ["@biomejs/biome"],
"version": "1.0.7"
}