Files
emdash-patch-imageupload/packages/plugins/atproto/package.json
kunthawat 2d1be52177 Emdash source with visual editor image upload fix
Fixes:
1. media.ts: wrap placeholder generation in try-catch
2. toolbar.ts: check r.ok, display error message in popover
2026-05-03 10:44:54 +07:00

49 lines
980 B
JSON

{
"name": "@emdash-cms/plugin-atproto",
"version": "0.1.2",
"description": "AT Protocol / standard.site syndication plugin for EmDash CMS",
"type": "module",
"main": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
},
"./sandbox": "./dist/sandbox-entry.mjs"
},
"files": [
"dist",
"src"
],
"keywords": [
"emdash",
"cms",
"plugin",
"atproto",
"bluesky",
"standard-site",
"syndication",
"fediverse"
],
"author": "Matt Kane",
"license": "MIT",
"peerDependencies": {
"emdash": "workspace:>=0.8.0"
},
"devDependencies": {
"tsdown": "catalog:",
"vitest": "catalog:"
},
"scripts": {
"build": "tsdown src/index.ts src/sandbox-entry.ts --format esm --dts --clean",
"test": "vitest run",
"typecheck": "tsgo --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emdash-cms/emdash.git",
"directory": "packages/plugins/atproto"
},
"dependencies": {}
}