typedoc
Version:
Create api documentation for TypeScript projects.
128 lines • 3.87 kB
JSON
{
"name": "typedoc",
"description": "Create api documentation for TypeScript projects.",
"version": "0.28.3",
"homepage": "https://typedoc.org",
"type": "module",
"exports": {
".": "./dist/index.js",
"./tsdoc.json": "./tsdoc.json",
"./package.json": "./package.json",
"./models": "./dist/lib/models/index.js",
"./browser": "./dist/browser-utils.js",
"./browser/*": "./dist/browser-locales/*.js",
"./debug": "./dist/lib/debug/index.js",
"./debug/*": "./dist/lib/debug/*.js"
},
"types": "./dist/index.d.ts",
"bin": {
"typedoc": "bin/typedoc"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/TypeStrong/TypeDoc.git"
},
"bugs": {
"url": "https://github.com/TypeStrong/TypeDoc/issues"
},
"engines": {
"node": ">= 18",
"pnpm": ">= 10"
},
"dependencies": {
"@gerrit0/mini-shiki": "^3.2.2",
"lunr": "^2.3.9",
"markdown-it": "^14.1.0",
"minimatch": "^9.0.5",
"yaml": "^2.7.1"
},
"peerDependencies": {
"typescript": "5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x || 5.8.x"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/lunr": "^2.3.7",
"@types/markdown-it": "^14.1.2",
"@types/mocha": "^10.0.10",
"@types/node": "18",
"@typestrong/fs-fixture-builder": "github:TypeStrong/fs-fixture-builder#34113409e3a171e68ce5e2b55461ef5c35591cfe",
"c8": "^10.1.3",
"dprint": "^0.49.1",
"esbuild": "^0.25.2",
"eslint": "^9.24.0",
"mocha": "^11.1.0",
"puppeteer": "^24.6.0",
"semver": "^7.7.1",
"tsx": "^4.19.3",
"typescript": "5.8.3",
"typescript-eslint": "^8.29.0"
},
"files": [
"/bin",
"!*.map",
"/dist",
"!/dist/tmp",
"!/dist/.tsbuildinfo",
"!/dist/test",
"/LICENSE",
"/static",
"/tsdoc.json"
],
"keywords": [
"typescript",
"documentation",
"generator"
],
"c8": {
"extension": [
".ts",
".tsx"
],
"reporter": [
"html-spa",
"text-summary"
],
"exclude": [
"**/*.d.ts",
"src/test",
"tmp"
]
},
"imports": {
"#utils": {
"typedoc-ts": "./src/lib/utils-common/index.ts",
"default": "./dist/lib/utils-common/index.js"
},
"#models": {
"typedoc-ts": "./src/lib/models/index.ts",
"default": "./dist/lib/models/index.js"
},
"#serialization": {
"typedoc-ts": "./src/lib/serialization/index.ts",
"default": "./dist/lib/serialization/index.js"
},
"#node-utils": {
"typedoc-ts": "./src/lib/utils/index.ts",
"default": "./dist/lib/utils/index.js"
}
},
"scripts": {
"test": "mocha --config .config/mocha.fast.json",
"test:cov": "c8 -r lcov mocha --config .config/mocha.fast.json",
"doc:c": "node bin/typedoc --tsconfig src/test/converter/tsconfig.json",
"doc:cd": "node --inspect-brk bin/typedoc --tsconfig src/test/converter/tsconfig.json",
"doc:c2": "node bin/typedoc --options src/test/converter2 --tsconfig src/test/converter2/tsconfig.json",
"doc:c2d": "node --inspect-brk bin/typedoc --options src/test/converter2 --tsconfig src/test/converter2/tsconfig.json",
"example": "cd example && node ../bin/typedoc",
"test:full": "c8 -r lcov -r text-summary mocha --config .config/mocha.full.json",
"rebuild_specs": "node scripts/rebuild_specs.js",
"build": "pnpm build:tsc && pnpm build:locales && pnpm build:themes",
"build:tsc": "tsc --project .",
"build:themes": "node scripts/build_themes.js",
"build:locales": "node scripts/build_browser_translations.js",
"build:prod": "pnpm build:prod:tsc && pnpm build:locales && pnpm build:themes",
"build:prod:tsc": "tsc --project . --sourceMap false --declarationMap false",
"lint": "eslint . --max-warnings 0 && dprint check"
}
}