@libpdf/core 0.0.1-beta.8 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libpdf/core",
3
- "version": "0.0.1-beta.8",
3
+ "version": "0.1.0",
4
4
  "description": "A modern PDF library for TypeScript - parsing and generation",
5
5
  "keywords": [
6
6
  "digital-signature",
@@ -13,7 +13,7 @@
13
13
  "signing",
14
14
  "typescript"
15
15
  ],
16
- "homepage": "https://libpdf.documenso.com",
16
+ "homepage": "https://libpdf.dev",
17
17
  "bugs": {
18
18
  "url": "https://github.com/LibPDF-js/core/issues"
19
19
  },
@@ -46,20 +46,20 @@
46
46
  },
47
47
  "scripts": {
48
48
  "build": "tsdown",
49
- "test": "bun --env-file=.env.local vitest",
50
- "test:run": "bun --env-file=.env.local vitest run",
51
- "test:coverage": "bun --env-file=.env.local vitest run --coverage",
52
- "typecheck": "tsc --noEmit",
53
- "lint": "oxlint --type-aware && oxfmt --check",
54
- "lint:fix": "oxlint --type-aware --fix && oxfmt",
55
- "format": "oxfmt",
49
+ "docs:build": "bun run --cwd apps/docs build",
50
+ "docs:dev": "bun run --cwd apps/docs dev",
56
51
  "examples": "bun run examples/run-all.ts",
57
52
  "examples:quiet": "bun run examples/run-all.ts --quiet",
58
- "docs:dev": "bun run --cwd apps/docs dev",
59
- "docs:build": "bun run --cwd apps/docs build",
60
- "prepublishOnly": "bun run build",
53
+ "format": "oxfmt",
54
+ "lint": "oxlint --type-aware && oxfmt --check",
55
+ "lint:fix": "oxlint --type-aware --fix && oxfmt",
61
56
  "prepare": "husky",
62
- "release": "./scripts/release.sh"
57
+ "prepublishOnly": "bun run build",
58
+ "release": "./scripts/release.sh",
59
+ "test": "bun --env-file=.env.local vitest",
60
+ "test:coverage": "bun --env-file=.env.local vitest run --coverage",
61
+ "test:run": "bun --env-file=.env.local vitest run",
62
+ "typecheck": "tsc --noEmit"
63
63
  },
64
64
  "dependencies": {
65
65
  "@noble/ciphers": "^2.1.1",
@@ -80,12 +80,12 @@
80
80
  "oxlint": "^1.39.0",
81
81
  "oxlint-tsgolint": "^0.11.1",
82
82
  "tsdown": "^0.18.4",
83
+ "typescript": "^5",
83
84
  "vitest": "^4.0.16"
84
85
  },
85
86
  "peerDependencies": {
86
87
  "@google-cloud/kms": "^5.0.0",
87
- "@google-cloud/secret-manager": "^6.0.0",
88
- "typescript": "^5"
88
+ "@google-cloud/secret-manager": "^6.0.0"
89
89
  },
90
90
  "peerDependenciesMeta": {
91
91
  "@google-cloud/kms": {
@@ -94,5 +94,8 @@
94
94
  "@google-cloud/secret-manager": {
95
95
  "optional": true
96
96
  }
97
+ },
98
+ "engines": {
99
+ "node": ">=20"
97
100
  }
98
101
  }