forked from jasonphillips/pdffiller-stream
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 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
{
"name": "@sparticuz/pdffiller",
"version": "7.1.2",
"private": false,
"description": "Take an existing PDF Form and data and PDF Filler will create a new PDF with all given fields populated.",
"keywords": [
"fdf",
"nodejs",
"pdf",
"pdffiller",
"pdftk",
"pdftk-java"
],
"homepage": "https://github.com/Sparticuz/pdffiller-stream",
"bugs": {
"url": "https://github.com/Sparticuz/pdffiller-stream/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sparticuz/pdffiller-stream.git"
},
"license": "MIT",
"author": {
"name": "original: John Taylor and David Baldwynn; stream fork: Jason Phillips, stream fork, typescript/esm fork: Kyle McNally"
},
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf dist/** && tsc -p tsconfig.build.json",
"lint": "eslint .",
"test": "rm -rf test/out/** && mkdir -p test/out && vitest run --coverage"
},
"devDependencies": {
"@sparticuz/eslint-config": "^9.3.10",
"@tsconfig/node20": "^20.1.6",
"@tsconfig/strictest": "^2.0.6",
"@types/node": "^20.19.18",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.36.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=16"
}
}