Andrey Antukh b59b259a77 ♻️ Remove unnecessary page-id stamping on shapes
Stop stamping :page-id onto shape objects in three places:

- files_thumbnails.clj: get-thumbnail-frame now returns [frame page-id]
  pair instead of stamping the page-id onto the frame itself
- binfile/v3.clj: remove stamp on export (import derives page-id from
  zip entry path, never reads it from the shape)
- library/export.cljs: same — remove stamp on library export

The page-id is always available from context in these code paths.

AI-assisted-by: deepseek-v4-pro
2026-07-31 13:28:22 +02:00
..
2025-05-20 13:05:52 +02:00
2025-09-21 22:15:27 +02:00
2026-01-22 13:55:41 +01:00
2026-01-22 13:55:41 +01:00
2026-06-30 16:15:30 +02:00
2026-06-30 16:15:30 +02:00
2026-06-30 16:15:30 +02:00
2026-05-29 11:24:58 +02:00

Penpot Library

A library that exposes a limited set of Penpot's features for programmatic use. Currently, it provides methods to build Penpot files in memory and export them as .penpot files (ZIP archives containing all the necessary data to import them into a Penpot application).

User Guide

How to install

pnpm add @penpot/library

Example of use

import * as penpot from "@penpot/library";
import { createWriteStream } from 'fs';
import { Writable } from "stream";

const context = penpot.createBuildContext();


context.addFile({name: "Test File 1"});
context.addPage({name: "Foo Page"});

context.addBoard({
  name: "Foo Board",
  x: 0,
  y: 0,
  width: 500,
  height: 300,
});

context.closeBoard();
context.closeFile();

// Create a file stream to write the zip to
const output = createWriteStream('sample-stream.zip');

// Wrap Node's stream in a WHATWG WritableStream
const writable = Writable.toWeb(output);
await penpot.exportStream(context, writable);

Developer Guide

How to publish

Build the library:

./scripts/build

Login on npm:

npm login

Publish on npm:

npm publish --access public

License

This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.

Copyright (c) KALEIDOS INC Sucursal en España SL