forked from jasonphillips/pdffiller-stream
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 KB
/
package.json
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
{
"name": "@sparticuz/pdffiller",
"version": "6.1.0",
"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": "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 \"**/*.?(c|m)[jt]s?(x)\"",
"test": "mkdir -p test/out && vitest run --coverage"
},
"devDependencies": {
"@sparticuz/eslint-config": "^9.0.4",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^20.16.10",
"@vitest/coverage-v8": "^2.1.2",
"eslint": "^9.11.1",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0",
"vitest": "^2.1.2"
},
"engines": {
"node": ">=16"
}
}