-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 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
107
108
109
110
111
112
113
114
{
"name": "pdfnative-cli",
"version": "1.1.0",
"description": "Official CLI for pdfnative — render JSON to PDF (22 Unicode scripts, COLRv1 colour emoji, true constant-memory streaming), sign (RSA + ECDSA), inspect, validate PDF/UA, and verify CMS signatures with LTV (RFC 3161 timestamps, OCSP, CRL). Zero extra runtime dependencies.",
"type": "module",
"bin": {
"pdfnative": "./dist/cli.cjs"
},
"main": "./dist/cli.cjs",
"module": "./dist/cli.js",
"types": "./dist/cli.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"typecheck:tests": "tsc --project tsconfig.test.json --noEmit",
"typecheck:all": "npm run typecheck && npm run typecheck:tests",
"prepublishOnly": "npm run build"
},
"keywords": [
"pdf",
"pdf-generation",
"cli",
"pdfnative",
"pdf-render",
"pdf-sign",
"pdf-verify",
"pdf-inspect",
"zero-dependency",
"typescript",
"pdf-a",
"digital-signature",
"cms",
"pkcs7",
"ecdsa",
"rfc3161",
"ltv",
"ocsp",
"crl",
"pades",
"pdf-watch",
"batch",
"shell-completions",
"command-line",
"pdf-ua",
"accessibility",
"colr",
"color-emoji",
"unicode",
"text-shaping",
"opentype",
"bidi",
"streaming",
"telugu",
"sinhala",
"khmer",
"myanmar",
"tibetan",
"amharic",
"ai-agent",
"agentic",
"automation",
"json-output",
"json-schema",
"sbom",
"supply-chain"
],
"author": "Nizoka <hello@pdfnative.dev> (https://pdfnative.dev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Nizoka/pdfnative-cli.git"
},
"homepage": "https://github.com/Nizoka/pdfnative-cli#readme",
"bugs": {
"url": "https://github.com/Nizoka/pdfnative-cli/issues"
},
"funding": {
"type": "individual",
"url": "https://plika.app"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"pdfnative": "^1.3.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.1.7",
"eslint": "^9.0.0",
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"typescript-eslint": "^8.59.2",
"vitest": "^4.1.7"
},
"overrides": {
"esbuild": "^0.28.1"
}
}