-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.64 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.64 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
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@libpdf/core",
"version": "0.2.11",
"description": "A modern PDF library for TypeScript - parsing and generation",
"keywords": [
"digital-signature",
"document",
"esign",
"generator",
"parser",
"pdf",
"pkcs7",
"signing",
"typescript"
],
"homepage": "https://libpdf.dev",
"bugs": {
"url": "https://github.com/LibPDF-js/core/issues"
},
"license": "MIT",
"author": "Lucas Smith",
"repository": {
"type": "git",
"url": "git+https://github.com/LibPDF-js/core.git"
},
"files": [
"dist",
"LICENSE.md",
"README.md"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"imports": {
"#src/*": "./src/*"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"bench": "vitest bench",
"bench:report": "bun run scripts/bench-report.ts",
"build": "tsdown",
"docs:build": "bun run --cwd apps/docs build",
"docs:dev": "bun run --cwd apps/docs dev",
"examples": "bun run examples/run-all.ts",
"examples:quiet": "bun run examples/run-all.ts --quiet",
"format": "oxfmt",
"lint": "oxlint --type-aware && oxfmt --check",
"lint:fix": "oxlint --type-aware --fix && oxfmt",
"prepare": "husky",
"prepublishOnly": "bun run build",
"release": "./scripts/release.sh",
"test": "bun --env-file=.env.local vitest",
"test:coverage": "bun --env-file=.env.local vitest run --coverage",
"test:run": "bun --env-file=.env.local vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@noble/ciphers": "^2.1.1",
"@noble/hashes": "^2.0.1",
"@scure/base": "^2.0.0",
"asn1js": "^3.0.7",
"lru-cache": "^11.2.6",
"pako": "^2.1.0",
"pkijs": "^3.3.3"
},
"devDependencies": {
"@google-cloud/kms": "^5.0.0",
"@google-cloud/secret-manager": "^6.0.0",
"@types/bun": "^1.3.5",
"@types/pako": "^2.0.4",
"@vitest/coverage-v8": "4.0.16",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxfmt": "^0.24.0",
"oxlint": "^1.39.0",
"oxlint-tsgolint": "^0.11.1",
"pdf-lib": "^1.17.1",
"tsdown": "^0.18.4",
"typescript": "^5",
"vitest": "^4.0.16"
},
"peerDependencies": {
"@google-cloud/kms": "^5.0.0",
"@google-cloud/secret-manager": "^6.0.0"
},
"peerDependenciesMeta": {
"@google-cloud/kms": {
"optional": true
},
"@google-cloud/secret-manager": {
"optional": true
}
},
"engines": {
"node": ">=20"
}
}