{"id":16007759,"url":"https://github.com/pinussilvestrus/camunda-modeler-webpack-plugins","last_synced_at":"2026-05-05T07:31:36.978Z","repository":{"id":66099813,"uuid":"457813913","full_name":"pinussilvestrus/camunda-modeler-webpack-plugins","owner":"pinussilvestrus","description":"Webpack plugins to easily configure Camunda Modeler extensions.","archived":false,"fork":false,"pushed_at":"2023-04-18T09:47:31.000Z","size":53,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-05T02:24:51.980Z","etag":null,"topics":["camunda-modeler","camunda-modeler-plugin","webpack","webpack-plugin"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/pinussilvestrus.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":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-02-10T14:29:48.000Z","updated_at":"2023-04-18T07:17:46.000Z","dependencies_parsed_at":"2023-05-12T00:00:23.615Z","dependency_job_id":null,"html_url":"https://github.com/pinussilvestrus/camunda-modeler-webpack-plugins","commit_stats":{"total_commits":7,"total_committers":1,"mean_commits":7.0,"dds":0.0,"last_synced_commit":"f34cac9632758d937a7504c003a281a0d894a597"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pinussilvestrus/camunda-modeler-webpack-plugins","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pinussilvestrus%2Fcamunda-modeler-webpack-plugins","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pinussilvestrus%2Fcamunda-modeler-webpack-plugins/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pinussilvestrus%2Fcamunda-modeler-webpack-plugins/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pinussilvestrus%2Fcamunda-modeler-webpack-plugins/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pinussilvestrus","download_url":"https://codeload.github.com/pinussilvestrus/camunda-modeler-webpack-plugins/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pinussilvestrus%2Fcamunda-modeler-webpack-plugins/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32640533,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"online","status_checked_at":"2026-05-05T02:00:06.033Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["camunda-modeler","camunda-modeler-plugin","webpack","webpack-plugin"],"created_at":"2024-10-08T12:20:57.740Z","updated_at":"2026-05-05T07:31:34.946Z","avatar_url":"https://github.com/pinussilvestrus.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e This project is deprecated. Please head over to [camunda/camunda-modeler-webpack-plugin](https://github.com/camunda/camunda-modeler-webpack-plugin) to use the current version.\n\n# camunda-modeler-webpack-plugins\n\n[![Build Status](https://github.com/pinussilvestrus/camunda-modeler-webpack-plugins/workflows/CI/badge.svg)](https://github.com/pinussilvestrus/camunda-modeler-webpack-plugins/actions?query=workflow%3ACI)\n\nWebpack plugins to easily configure Camunda Modeler extensions.\n\n## Installation\n\n```sh\nnpm i --save-dev camunda-modeler-webpack-plugins\n```\n\n## Usage\n\nAdd a plugin to your webpack config. For example to configure a React client extension:\n\n```js\nconst ClientExtensionWebpackPlugin = require(\"camunda-modeler-webpack-plugins\").ClientExtensionWebpackPlugin;\n\nmodule.exports = {\n  plugins: [\n    new ClientExtensionWebpackPlugin()\n  ]\n};\n```\n\nor a properties panel extension:\n\n```js\nconst PropertiesPanelWebpackPlugin = require(\"camunda-modeler-webpack-plugins\").PropertiesPanelWebpackPlugin;\n\nmodule.exports = {\n  plugins: [\n    new PropertiesPanelWebpackPlugin()\n  ]\n};\n```\n\n## Configuration\n\nYou can pass configuration options to the plugins: \n\n```js\nplugins: [\n  new ClientExtensionWebpackPlugin({\n    loader: false\n  })\n]\n```\n\n### ClientExtensionWebpackPlugin\n\n| Name | Default | Description |\n| ----------- | ----------- | ----------- |\n| `alias` | true | Append React `alias` configuration |\n| `loader` | true | Append `babel-loader` configuration (requires `@babel/core` dependency) |\n\n### PropertiesPanelWebpackPlugin\n\n| Name | Default | Description |\n| ----------- | ----------- | ----------- |\n| `alias` | true | Append Properties Panel `alias` configuration |\n| `loader` | true | Append `babel-loader` configuration (requires `@babel/core` dependency) |\n\n## Resources\n\n* [Camunda Modeler plugins documentation](https://github.com/camunda/camunda-modeler/tree/master/docs/plugins#plugging-into-the-camunda-modeler)\n* [Camunda Modeler plugin helpers](https://github.com/camunda/camunda-modeler-plugin-helpers)\n\n## License\n\nMIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpinussilvestrus%2Fcamunda-modeler-webpack-plugins","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpinussilvestrus%2Fcamunda-modeler-webpack-plugins","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpinussilvestrus%2Fcamunda-modeler-webpack-plugins/lists"}