-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 890 Bytes
/
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
{
"name": "fdf-tools",
"version": "1.0.1",
"description": "A package to generate fdf (Forms data format) files",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "del-cli dist && tsc"
},
"repository": "prkagrawal/fdf-tools",
"keywords": [
"fdf",
"pdf",
"form",
"data",
"format",
"fillable",
"pdftk",
"auto-fill"
],
"author": {
"name": "Prince Agrawal",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/prkagrawal/fdf-tools/issues"
},
"homepage": "https://github.com/prkagrawal/fdf-tools#readme",
"devDependencies": {
"@types/node": "^20.14.0",
"del-cli": "^5.1.0",
"typescript": "^5.4.5"
}
}