forked from Hopding/pdf-lib
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 4.65 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 4.65 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@denkiyagi/pdf-lib",
"version": "1.17.1-mod.2026.4",
"description": "A modified version of pdf-lib. Create and modify PDF files with JavaScript",
"author": "DenkiYagi Inc. (modified version author), Andrew Dillon <andrew.dillon.j@gmail.com> (orignal version author)",
"contributors": [
"jerp (https://github.com/jerp)",
"Greg Bacchus (https://github.com/gregbacchus)",
"Mickael Lecoq (https://github.com/mlecoq)",
"Philip Murphy (https://github.com/philipjmurphy)",
"Dmitry Kozliuk (https://github.com/PlushBeaver)",
"Said Amezyane (https://github.com/samezyane)",
"Georges Gabereau (https://github.com/multiplegeorges)",
"Gerard Smit (https://github.com/GerardSmit)",
"jlmessenger (https://github.com/jlmessenger)",
"thebenlamm (https://github.com/thebenlamm)",
"cshenks (https://github.com/cshenks)",
"James Woodrow (https://github.com/jwoodrow)",
"Guillaume Grossetie (https://github.com/Mogztter)",
"Philipp Tessenow (https://github.com/tessi)",
"Tim Kräuter (https://github.com/timKraeuter)",
"Richard Bateman (https://github.com/taxilian)",
"Sebastian Martinez (https://github.com/sebastinez)",
"soadzoor (https://github.com/soadzoor)",
"Slobodan Babic (https://github.com/bockoblur)",
"Zach Toben (https://github.com/ztoben)",
"Zack Sheppard (https://github.com/zackdotcomputer)",
"DkDavid (https://github.com/DkDavid)",
"Bj Tecu (https://github.com/btecu)",
"Brent McSharry (https://github.com/mcshaz)",
"Tim Knapp (https://github.com/duffyd)",
"Ching Chang (https://github.com/ChingChang9)"
],
"scripts": {
"release:prep": "yarn clean && yarn typecheck && yarn lint && yarn test && yarn build && yarn apps:typecheck",
"get:version": "node --eval 'console.log(require(`./package.json`).version)'",
"clean": "rimraf dist scratchpad/build coverage tsBuildInfo.json apps/node-build apps/node/tsBuildInfo.json isolate*.log flamegraph.html out.pdf",
"typecheck": "yarn typecheck:src && yarn typecheck:tests",
"typecheck:src": "tsc --noEmit -p tsconfig.json",
"typecheck:tests": "tsc --noEmit -p tests/tsconfig.json",
"test": "vitest run",
"testw": "vitest watch",
"testc": "vitest run --coverage && open coverage/index.html",
"lint": "yarn lint:prettier && yarn lint:tslint:src && yarn lint:tslint:tests",
"lint:tslint:src": "tslint --project tsconfig.json --fix",
"lint:tslint:tests": "tslint --project tests/tsconfig.json --fix",
"lint:prettier": "prettier --write \"./{src,tests,apps}/**/*.{ts,js,json,html,css}\" --log-level error",
"build": "yarn build:es && yarn build:umd",
"build:es": "tsc -p tsconfig.build.json",
"build:umd": "yarn rollup --config rollup.config.mjs",
"scratchpad:start": "tsc --build scratchpad/tsconfig.json --watch",
"scratchpad:run": "node scratchpad/build/scratchpad/index.js",
"scratchpad:flame": "rimraf isolate*.log && node --prof scratchpad/build/scratchpad/index.js && node --prof-process --preprocess -j isolate*.log | flamebearer",
"apps:node": "yarn build:es && tsc --build apps/node/tsconfig.json && node apps/node-build/index.js",
"apps:web": "yarn build:umd && http-server -c-1 .",
"apps:typecheck": "tsc --noEmit -p apps/tsconfig.json"
},
"type": "module",
"exports": {
"./*.js": {
"import": "./dist/es/*.js",
"types": "./dist/es/*.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist/",
"src/",
"LICENSE.txt",
"package.json",
"README.md",
"MODIFICATIONS.md"
],
"engines": {
"node": ">=20"
},
"dependencies": {
"@denkiyagi/fontkit": "2.0.4-mod.2025.5",
"@pdf-lib/standard-fonts": "^1.0.0",
"crypto-js": "^4.2.0",
"fast-png": "^8.0.0",
"pako": "^2.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/crypto-js": "^4.2.2",
"@types/node": "^20",
"@types/node-fetch": "^2.6.13",
"@types/pako": "^2.0.4",
"flamebearer": "^1.1.3",
"http-server": "^14.1.1",
"prettier": "^3.6.2",
"rimraf": "^6.1.2",
"rollup": "^4.53.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"license": "MIT",
"private": false,
"repository": "https://github.com/DenkiYagi/pdf-lib",
"bugs": {
"url": "https://github.com/DenkiYagi/pdf-lib/issues"
},
"keywords": [
"pdf-lib",
"pdf",
"document",
"create",
"modify",
"creation",
"modification",
"edit",
"editing",
"typescript",
"javascript",
"library"
]
}