-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.34 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
49
50
51
52
{
"name": "gobiz-pay",
"version": "1.0.1",
"description": "TypeScript module for interacting with the GoBiz (GoPay Merchant) API: transaction history, real-time payment monitoring, and dynamic QRIS.",
"repository": {
"type": "git",
"url": "git+https://github.com/ItsAzni/gobiz-pay.git"
},
"bugs": {
"url": "https://github.com/ItsAzni/gobiz-pay/issues"
},
"homepage": "https://github.com/ItsAzni/gobiz-pay#readme",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"gobiz-pay-demo": "./dist/cli.js"
},
"files": ["dist"],
"engines": { "node": ">=18" },
"scripts": {
"build": "tsup",
"dev": "tsx watch src/cli.ts",
"demo": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit"
},
"keywords": ["gopay", "gobiz", "gojek", "payment", "merchant", "qris", "indonesia"],
"license": "MIT",
"dependencies": {
"crc": "^4.3.2",
"dotenv": "^16.4.5",
"qrcode": "^1.5.4"
},
"devDependencies": {
"@types/crc": "^4.0.0",
"@types/node": "^20.14.0",
"@types/qrcode": "^1.5.6",
"tsup": "^8.0.0",
"tsx": "^4.16.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}