-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "boxpdf",
"version": "1.12.0",
"mcpName": "io.github.earonesty/boxpdf",
"description": "Tiny box-layout DSL over pdf-lib. Flexbox-lite for server-side PDF generation in any JS runtime (Node, Cloudflare Workers, Deno, browsers).",
"keywords": [
"pdf",
"pdf-lib",
"layout",
"flexbox",
"vstack",
"hstack",
"cloudflare-workers",
"edge",
"boxpdf"
],
"license": "MIT",
"author": {
"name": "Erik Aronesty",
"email": "erik@q32.com"
},
"homepage": "https://github.com/earonesty/boxpdf#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/earonesty/boxpdf.git"
},
"bugs": {
"url": "https://github.com/earonesty/boxpdf/issues"
},
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"boxpdf": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./inter": {
"types": "./dist/inter.d.ts",
"import": "./dist/inter.js",
"require": "./dist/inter.cjs"
}
},
"files": [
"dist",
"templates",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"visual:check:stream": "tsx scripts/check-stream-visuals.ts",
"memory:check:continuation": "tsx scripts/check-continuation-memory.ts",
"docs:check": "node scripts/check-docs-site.mjs",
"example": "tsx examples/index.ts",
"gallery": "tsx scripts/build-gallery.ts",
"prepublishOnly": "pnpm run typecheck && pnpm run test && pnpm run build"
},
"engines": {
"node": ">=20"
},
"peerDependencies": {
"pdf-lib": "^1.17.0"
},
"dependencies": {
"@pdf-lib/fontkit": "^1.1.1"
},
"devDependencies": {
"@react-pdf/renderer": "^4.5.1",
"@types/node": "^22.19.19",
"@vitest/coverage-v8": "4.1.6",
"pdf-lib": "^1.17.1",
"react": "^19.2.6",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.6"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.30.3"
}