-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 KB
/
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
42
43
44
45
46
{
"name": "@prakrit_m/slipok-sdk",
"version": "1.1.1",
"description": "ไลบรารีสำหรับตรวจสอบสลิปโอนเงินผ่าน SlipOK API - A TypeScript library for verifying Thai bank transfer slips using SlipOK API",
"private": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"test": "ts-node example/test.ts",
"build": "tsup",
"build:run": "tsup && node dist/index.js",
"publish": "npm run build"
},
"author": "Prakrit M. <prakritmanstudio@gmail.com>",
"license": "ISC",
"keywords": [
"SlipOK",
"qrslip",
"SlipVerify",
"SlipVerification",
"typescript"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PrakritManStudio/slipok-sdk.git"
},
"bugs": {
"url": "https://github.com/PrakritManStudio/slipok-sdk/issues"
},
"homepage": "https://github.com/PrakritManStudio/slipok-sdk#readme",
"peerDependencies": {},
"devDependencies": {
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.3"
},
"dependencies": {},
"engines": {
"node": ">=16.0.0"
}
}