-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (37 loc) · 964 Bytes
/
package.json
File metadata and controls
38 lines (37 loc) · 964 Bytes
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
{
"description": "Unofficial wrapper for the EasyBill API",
"version": "1.0.4",
"name": "easybill",
"homepage": "https://github.com/ReceiptPlease/EasyBill",
"author": "PhoneDroid",
"license": "AGPLv3-or-later",
"bugs": {
"url": "https://github.com/ReceiptPlease/EasyBill/issues"
},
"repository": "ReceiptPlease/EasyBill" ,
"keywords": [
"TypeScript",
"EasyBill",
"API"
],
"type" : "module" ,
"main" : "./Export/mod.js",
"types" : "./Export/mod.d.ts",
"exports" : "./Export/mod.js" ,
"files" : [ "Export" ],
"engines": {
"node": "^18.12.1"
},
"scripts": {
"build": "bash .config/Tasks/Build.sh",
"generate:types": "bash .config/Tasks/Types.sh"
},
"dependencies": {
"bottleneck": "^2.19.5",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/node": "^18.15.3",
"ts-node-dev": "^2.0.0"
}
}