@bernatch22/aldus 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +59 -0
- package/dist/cli.js +3250 -0
- package/dist/index.js +3070 -0
- package/package.json +29 -0
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bernatch22/aldus",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Pixel-perfect PDF editing over a PDF's real content graph, plus an LLM agent (Claude subscription or OpenRouter) — read, edit, highlight, link, fill/build forms, from code or the `aldus` CLI.",
|
|
5
|
+
"keywords": ["pdf", "pdf-editor", "acroform", "form-fill", "llm", "agent", "openrouter", "claude"],
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Bernardo Castro",
|
|
8
|
+
"homepage": "https://bernardocastro.dev/aldus",
|
|
9
|
+
"repository": { "type": "git", "url": "git+https://github.com/bernatch22/aldus.git" },
|
|
10
|
+
"type": "module",
|
|
11
|
+
"bin": { "aldus": "./dist/cli.js" },
|
|
12
|
+
"exports": { ".": "./dist/index.js" },
|
|
13
|
+
"files": ["dist", "README.md"],
|
|
14
|
+
"engines": { "node": ">=18" },
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "node build.mjs",
|
|
17
|
+
"prepublishOnly": "node build.mjs"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@anthropic-ai/claude-agent-sdk": "^0.3.198",
|
|
21
|
+
"pdf-lib": "^1.17.1",
|
|
22
|
+
"pdfjs-dist": "^4.10.38",
|
|
23
|
+
"zod": "^4.0.0"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"esbuild": "^0.25.0"
|
|
27
|
+
},
|
|
28
|
+
"publishConfig": { "access": "public" }
|
|
29
|
+
}
|