{"id":16252371,"url":"https://github.com/remarkablemark/typedoc-plugin-copy-code-to-clipboard","last_synced_at":"2025-03-24T17:45:28.085Z","repository":{"id":65593780,"uuid":"594527912","full_name":"remarkablemark/typedoc-plugin-copy-code-to-clipboard","owner":"remarkablemark","description":":clipboard: TypeDoc plugin copy code to clipboard","archived":false,"fork":false,"pushed_at":"2024-05-27T23:27:33.000Z","size":2500,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-05-28T08:46:03.541Z","etag":null,"topics":["copy-to-clipboard","npm","npm-package","typedoc","typedoc-plugin","typescript"],"latest_commit_sha":null,"homepage":"https://b.remarkabl.org/typedoc-plugin-copy-code-to-clipboard","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/remarkablemark.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["remarkablemark"],"patreon":"remarkablemark","open_collective":null,"ko_fi":"remarkablemark","tidelift":null,"community_bridge":null,"liberapay":"remarkablemark","issuehunt":null,"otechie":null,"custom":["https://b.remarkabl.org/teespring"]}},"created_at":"2023-01-28T20:30:45.000Z","updated_at":"2024-05-30T01:42:41.744Z","dependencies_parsed_at":"2024-02-13T00:28:08.994Z","dependency_job_id":"420134e6-7a4f-486f-88d4-88c01b03778b","html_url":"https://github.com/remarkablemark/typedoc-plugin-copy-code-to-clipboard","commit_stats":{"total_commits":392,"total_committers":4,"mean_commits":98.0,"dds":"0.10459183673469385","last_synced_commit":"f30b64fb861101c13c7c8458e44e3fe698584085"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Ftypedoc-plugin-copy-code-to-clipboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Ftypedoc-plugin-copy-code-to-clipboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Ftypedoc-plugin-copy-code-to-clipboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Ftypedoc-plugin-copy-code-to-clipboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/remarkablemark","download_url":"https://codeload.github.com/remarkablemark/typedoc-plugin-copy-code-to-clipboard/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245320383,"owners_count":20596167,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["copy-to-clipboard","npm","npm-package","typedoc","typedoc-plugin","typescript"],"created_at":"2024-10-10T15:13:26.424Z","updated_at":"2025-03-24T17:45:28.064Z","avatar_url":"https://github.com/remarkablemark.png","language":"TypeScript","funding_links":["https://github.com/sponsors/remarkablemark","https://patreon.com/remarkablemark","https://ko-fi.com/remarkablemark","https://liberapay.com/remarkablemark","https://b.remarkabl.org/teespring"],"categories":[],"sub_categories":[],"readme":"\u003e **Note**: TypeDoc natively supports this in [v0.24.5](https://github.com/TypeStrong/typedoc/issues/2153)\n\n# typedoc-plugin-copy-code-to-clipboard\n\n[![NPM](https://nodei.co/npm/typedoc-plugin-copy-code-to-clipboard.png)](https://nodei.co/npm/typedoc-plugin-copy-code-to-clipboard/)\n\n[![NPM version](https://img.shields.io/npm/v/typedoc-plugin-copy-code-to-clipboard.svg)](https://www.npmjs.com/package/typedoc-plugin-copy-code-to-clipboard)\n[![build](https://github.com/remarkablemark/typedoc-plugin-copy-code-to-clipboard/actions/workflows/build.yml/badge.svg)](https://github.com/remarkablemark/typedoc-plugin-copy-code-to-clipboard/actions/workflows/build.yml)\n\n[TypeDoc](https://github.com/TypeStrong/typedoc) plugin that adds a button to copy code to clipboard for code blocks. See [demo](https://b.remarkabl.org/typedoc-plugin-copy-code-to-clipboard). Inspired by [prototype](https://replit.com/@remarkablemark/Copy-code-to-clipboard).\n\n## Installation\n\n[NPM](https://www.npmjs.com/package/typedoc-plugin-copy-code-to-clipboard):\n\n```sh\nnpm install typedoc-plugin-copy-code-to-clipboard --save-dev\n```\n\n[Yarn](https://yarnpkg.com/package/typedoc-plugin-copy-code-to-clipboard):\n\n```sh\nyarn add typedoc-plugin-copy-code-to-clipboard --dev\n```\n\nTypeDoc automatically detected installed plugins. This plugin requires TypeDoc version `^0.23`.\n\n## Configuration\n\nAdd the plugin to [`typedoc.json`](https://typedoc.org/guides/options/):\n\n```json\n{\n  \"entryPoints\": [\"src\"],\n  \"plugin\": [\"typedoc-plugin-copy-code-to-clipboard\"]\n}\n```\n\nOr specify the plugin when running the CLI command:\n\n```sh\nnpx typedoc src --plugin typedoc-plugin-copy-code-to-clipboard\n```\n\n## Development\n\nBuild the plugin:\n\n```sh\nnpm run build # npm run build:watch\n```\n\nGenerate the docs:\n\n```sh\nnpm run docs\n```\n\nOpen the docs:\n\n```sh\nopen docs/index.html\n```\n\n## Release\n\nRelease is automated with [Release Please](https://github.com/googleapis/release-please).\n\n## License\n\n[MIT](https://github.com/remarkablemark/typedoc-plugin-copy-code-to-clipboard/blob/master/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremarkablemark%2Ftypedoc-plugin-copy-code-to-clipboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fremarkablemark%2Ftypedoc-plugin-copy-code-to-clipboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremarkablemark%2Ftypedoc-plugin-copy-code-to-clipboard/lists"}