{"id":39908377,"url":"https://github.com/fcamarlinghi/expresso","last_synced_at":"2026-01-18T16:02:53.723Z","repository":{"id":10201466,"uuid":"64867677","full_name":"fcamarlinghi/expresso","owner":"fcamarlinghi","description":"Expresso! Exporter is a Photoshop plugin that lets you quickly channel pack and export textures to common file formats such as TGA, PNG and TIFF.","archived":false,"fork":false,"pushed_at":"2023-12-31T16:21:49.000Z","size":2532,"stargazers_count":62,"open_issues_count":14,"forks_count":35,"subscribers_count":12,"default_branch":"master","last_synced_at":"2023-12-31T17:25:20.417Z","etag":null,"topics":["3d","channel-packing","exporter","photoshop","plugin","textures"],"latest_commit_sha":null,"homepage":"https://minifloppy.it/tools/expresso/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fcamarlinghi.png","metadata":{"files":{"readme":"readme.md","changelog":"changelog.md","contributing":null,"funding":null,"license":"LICENSE-APACHE-2.0","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2016-08-03T18:01:07.000Z","updated_at":"2023-12-31T17:25:20.634Z","dependencies_parsed_at":"2023-01-13T15:47:55.872Z","dependency_job_id":"f7fa54bf-dd94-4edc-9ab3-79703bde58c4","html_url":"https://github.com/fcamarlinghi/expresso","commit_stats":null,"previous_names":[],"tags_count":5,"template":null,"template_full_name":null,"purl":"pkg:github/fcamarlinghi/expresso","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fcamarlinghi%2Fexpresso","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fcamarlinghi%2Fexpresso/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fcamarlinghi%2Fexpresso/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fcamarlinghi%2Fexpresso/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fcamarlinghi","download_url":"https://codeload.github.com/fcamarlinghi/expresso/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fcamarlinghi%2Fexpresso/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28541068,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T14:59:57.589Z","status":"ssl_error","status_checked_at":"2026-01-18T14:59:46.540Z","response_time":98,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["3d","channel-packing","exporter","photoshop","plugin","textures"],"created_at":"2026-01-18T16:02:53.635Z","updated_at":"2026-01-18T16:02:53.708Z","avatar_url":"https://github.com/fcamarlinghi.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# *Expresso!*\n*Expresso!* is a free extension for Photoshop CC that tries to improve the texturing workflow for 3D Artists.\n\nIt provides a set of utility panels that integrates directly into Photoshop to enhance your productivity by speeding up slow, repetitive and error-prone tasks.\n\n## Getting *Expresso!*\nA compiled version of the plugin is [available for download](http://minifloppy.it/portfolio/expresso/). See what's new in the [changelog](http://github.com/fcamarlinghi/expresso/blob/master/changelog.md). Please note that only the **Exporter** panel is currently available in the repository.\n\n### Building From Source\nYou will need a recent version of NodeJS and NPM on Windows or Mac to build the plugin.\n\n1. First [fork and/or clone](https://guides.github.com/activities/forking/) the repository.\n2. Install NPM dependencies using the `npm install` command.\n3. Create a text file called *cepy.certificate.js* in the `\u003cproject_root\u003e/scripts/distrib/` folder, and add the following content to it. Replace 'Your name' and 'Your password' with a name and a password of your choice. This information will be used to sign the extension package.\n\n``` js\nmodule.exports = {\n    owner: 'Your name',\n    file: 'scripts/distrib/cepy.certificate.p12',\n    password: 'Your password',\n};\n```\n\n4. Run the `npm run exporter:debug` command to create a debug version of the plugin. This will generate all the needed files in the `\u003cproject_root\u003e/build/com.expresso.exporter` folder and start watching for changes you make to the code.\n\nTo create a redistributable *ZXP* archive which can be installed in Photoshop, use the `npm run exporter:release` command. The archive will be generated in the `\u003cproject_root\u003e/release` folder.\n\n### Debugging\nThe simplest way to debug the plugin in Photoshop is to create a symbolic link between the `\u003cproject_root\u003e/build/com.expresso.exporter` folder and the local Adobe CEP `extensions` folder on your system. This way you'll be able to simply close and reopen the extension in Photoshop to make it pick-up the changes you did to the code (without having to restart the application).\n\nTo create symbolic links on Windows you can use the [Link Shell Extensions](http://schinagl.priv.at/nt/hardlinkshellext/linkshellextension.html) tools. On Mac you can use the `ln -s` command:\n\n```shell\nls -s /path/to/build/exporter /path/to/CEP/extensions/com.expresso.exporter\n```\n\nIf you're using Visual Studio Code as your IDE you can attach it directly to the Chrome Embeded Framework process by using one of the provided launch profiles.\n\nThe extension can also be debugged just like any other Photoshop extension using the Chrome Developer Tools. Please check out the [Adobe CEP Resources](http://adobe-cep.github.io/CEP-Resources/) page for additional information.\n\n## Contributing\nContributions are extremely welcome! Feel free to file issues or open pull requests.\n\n## License\nCopyright \u0026copy; 2015 Francesco Camarlinghi\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffcamarlinghi%2Fexpresso","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffcamarlinghi%2Fexpresso","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffcamarlinghi%2Fexpresso/lists"}