/ package.json
package.json
 1  {
 2    "name": "pagiko",
 3    "version": "0.1.0",
 4    "description": "PDF generation library that feels like home. Make PDFs the way you build UIs thanks to Tailwind and Flexbox.",
 5    "author": "Mikkel ALMONTE--RINGAUD <contact@vexcited.com> (https://github.com/Vexcited)",
 6    "license": "MIT",
 7    "homepage": "https://github.com/Vexcited/Pagiko",
 8    "repository": {
 9      "type": "git",
10      "url": "git+https://github.com/Vexcited/Pagiko.git"
11    },
12    "bugs": {
13      "url": "https://github.com/Vexcited/Pagiko/issues"
14    },
15    "keywords": [
16      "pdf",
17      "pdf-lib",
18      "pdflib",
19      "tailwind",
20      "node",
21      "browser",
22      "pdfjs"
23    ],
24    "sideEffects": false,
25    "exports": {
26      "import": {
27        "types": "./dist/index.d.mts",
28        "default": "./dist/index.mjs"
29      },
30      "require": {
31        "types": "./dist/index.d.ts",
32        "default": "./dist/index.js"
33      }
34    },
35    "main": "./dist/index.js",
36    "module": "./dist/index.mjs",
37    "types": "./dist/index.d.ts",
38    "files": [
39      "dist"
40    ],
41    "scripts": {
42      "build": "tsup"
43    },
44    "dependencies": {
45      "@cantoo/pdf-lib": "^2.4.4",
46      "yoga-layout": "^3.2.1"
47    },
48    "devDependencies": {
49      "@swc/core": "^1.13.5",
50      "@types/bun": "^1.2.21",
51      "@vexcited/eslint-config": "^0.1.1",
52      "eslint": "^9.35.0",
53      "jiti": "^2.5.1",
54      "terser": "^5.44.0",
55      "tsup": "^8.5.0",
56      "typescript": "^5.9.2"
57    }
58  }