-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.65 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.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
{
"name": "pdf-lite-monorepo",
"version": "1.7.4-alpha.3",
"private": true,
"type": "module",
"description": "A lightweight PDF library for Node.js and the browser",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"compile": "pnpm -r run compile && pnpm compile:examples && pnpm compile:test && pnpm compile:readme",
"compile:examples": "tsx ./scripts/build-examples.ts && prettier --write EXAMPLES.md",
"compile:test": "tsc --noEmit",
"compile:readme": "tsx ./scripts/validate-readme.ts",
"prepublish": "pnpm -r run compile",
"test": "pnpm -r --no-sort run test",
"prepare": "husky || true",
"lint:staged": "lint-staged --allow-empty",
"lint:commit": "commitlint --edit $1",
"format": "prettier --write '**/*.{js,ts,json,md,yaml,yml}'",
"docs:gen": "sh -c 'pnpm docs:gen:md \"$@\" && pnpm docs:gen:html \"$@\"' --",
"docs:gen:md": "./scripts/gen-md-docs.sh",
"docs:gen:html": "./scripts/gen-html-docs.sh"
},
"keywords": [
"pdf",
"typescript",
"browser",
"nodejs",
"zero-dependency",
"type-safe",
"pdf-parser",
"pdf-reader",
"pdf-writer",
"digital-signature",
"encryption",
"decryption"
],
"author": "Jacob Shirley",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jacobshirley/pdf-lite.git"
},
"bugs": {
"url": "https://github.com/jacobshirley/pdf-lite/issues"
},
"homepage": "https://jacobshirley.github.io/pdf-lite",
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"lint-staged": {
"*.{js,ts,json,md}": "pnpm format"
},
"pnpm": {
"overrides": {
"playwright": "$playwright",
"typescript": "$typescript"
},
"packageExtensions": {
"@vitest/browser": {
"peerDependencies": {
"@vitest/runner": "*"
}
}
}
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@types/node": "^24",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"playwright": "^1.56.1",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typedoc": "^0.28.14",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "6.0.3"
},
"dependencies": {
"pdf-lite": "1.7.4-alpha.3"
}
}