-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 863 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
{
"name": "@h1dd3nsn1p3r/pdf-invoice",
"version": "1.0.8",
"author": "h1dd3nsn1p3r",
"description": "Simple yet powerful node JS library that generates PDF invoice on the fly.",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "tsup ./src --watch",
"build": "tsup ./src",
"test": "node ./examples/example.ts"
},
"repository": {
"type": "git",
"url": "[email protected]:h1dd3nsn1p3r/pdf-invoice.git"
},
"homepage": "https://github.com/h1dd3nsn1p3r/pdf-invoice",
"keywords": [
"pdf",
"invoice",
"estimate",
"receipt",
"generator",
"nodejs",
"pdfmake"
],
"devDependencies": {
"@types/node": "^20.10.5",
"@types/pdfmake": "^0.2.8",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"pdfmake": "^0.2.8"
}
}