@robinpath/pdf 0.1.0 → 0.1.1

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.
Files changed (1) hide show
  1. package/package.json +30 -8
package/package.json CHANGED
@@ -1,15 +1,37 @@
1
1
  {
2
2
  "name": "@robinpath/pdf",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "PDF generation from HTML/text and text extraction from PDFs",
5
- "publishConfig": { "access": "public" },
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
6
8
  "type": "module",
7
9
  "main": "dist/index.js",
8
10
  "types": "dist/index.d.ts",
9
- "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" } },
10
- "files": ["dist"],
11
- "scripts": { "build": "tsc", "test": "node --import tsx --test tests/*.test.ts" },
12
- "peerDependencies": { "@wiredwp/robinpath": ">=0.20.0" },
13
- "dependencies": { "pdfkit": "^0.15.0", "pdf-parse": "^1.1.1" },
14
- "devDependencies": { "@wiredwp/robinpath": "^0.30.1", "@types/pdfkit": "^0.13.0", "tsx": "^4.19.0", "typescript": "^5.6.0" }
11
+ "exports": {
12
+ ".": {
13
+ "import": "./dist/index.js",
14
+ "types": "./dist/index.d.ts"
15
+ }
16
+ },
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "scripts": {
21
+ "build": "tsc",
22
+ "test": "node --import tsx --test tests/*.test.ts"
23
+ },
24
+ "peerDependencies": {
25
+ "@wiredwp/robinpath": ">=0.20.0"
26
+ },
27
+ "dependencies": {
28
+ "pdfkit": "^0.15.0",
29
+ "pdf-parse": "^1.1.1"
30
+ },
31
+ "devDependencies": {
32
+ "@wiredwp/robinpath": "^0.30.1",
33
+ "@types/pdfkit": "^0.13.0",
34
+ "tsx": "^4.19.0",
35
+ "typescript": "^5.6.0"
36
+ }
15
37
  }