-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.02 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": "invovate",
"version": "0.1.1",
"description": "Official JavaScript/TypeScript client for the Invovate invoice API — generate PDF, JSON & UBL 2.1 invoices in 11 languages from one call. Zero dependencies.",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./src/index.js"
}
},
"files": [
"src",
"index.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node test/smoke.js"
},
"keywords": [
"invoice",
"invoice-api",
"invoice-generator",
"pdf",
"pdf-invoice",
"ubl",
"billing",
"invoicing",
"multilingual",
"invovate"
],
"homepage": "https://invovate.com/api",
"repository": {
"type": "git",
"url": "git+https://github.com/LightSpeedPlusOne/invovate-js.git"
},
"bugs": {
"url": "https://github.com/LightSpeedPlusOne/invovate-js/issues"
},
"license": "MIT",
"engines": {
"node": ">=18"
}
}