aldus-pdf 0.3.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/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "aldus-pdf",
3
+ "version": "0.3.0",
4
+ "description": "Pixel-perfect PDF editing over a PDF's real content graph, plus an LLM agent — read, edit, highlight, link, fill/build forms. `aldus file.pdf` opens the full visual editor + AI in your browser; also a library and a scriptable CLI.",
5
+ "keywords": [
6
+ "pdf",
7
+ "pdf-editor",
8
+ "acroform",
9
+ "form-fill",
10
+ "llm",
11
+ "agent",
12
+ "claude"
13
+ ],
14
+ "license": "MIT",
15
+ "author": "Bernardo Castro",
16
+ "homepage": "https://bernardocastro.dev/aldus",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/bernatch22/aldus.git"
20
+ },
21
+ "type": "module",
22
+ "bin": {
23
+ "aldus": "./dist/cli.js"
24
+ },
25
+ "exports": {
26
+ ".": "./dist/index.js"
27
+ },
28
+ "files": [
29
+ "dist",
30
+ "README.md"
31
+ ],
32
+ "engines": {
33
+ "node": ">=18"
34
+ },
35
+ "scripts": {
36
+ "build": "node build.mjs",
37
+ "prepublishOnly": "node build.mjs"
38
+ },
39
+ "dependencies": {
40
+ "@anthropic-ai/claude-agent-sdk": "^0.3.198",
41
+ "pdf-lib": "^1.17.1",
42
+ "pdfjs-dist": "^4.10.38",
43
+ "zod": "^4.0.0",
44
+ "express": "^4.21.2",
45
+ "multer": "^2.0.1"
46
+ },
47
+ "devDependencies": {
48
+ "esbuild": "^0.25.0"
49
+ },
50
+ "publishConfig": {
51
+ "access": "public"
52
+ }
53
+ }