-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextrans-package.json
52 lines (52 loc) · 1.28 KB
/
nextrans-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
47
48
49
50
51
52
{
"name": "@nextrans/server",
"version": "0.0.1",
"description": "A midtrans client implementation for Next.js applications",
"scripts": {
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./transaction": {
"require": "./dist/transaction.js",
"types": "./dist/transaction.d.ts",
"import": "./dist/transaction.mjs",
"default": "./dist/transaction.mjs"
},
"./snap": {
"require": "./dist/snap/index.js",
"types": "./dist/snap/index.d.ts",
"import": "./dist/snap/index.mjs",
"default": "./dist/snap/index.mjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/iyxan23/nextrans.git"
},
"keywords": [
"nextjs",
"payment",
"payment-gateway",
"midtrans",
"client"
],
"peerDependencies": {
"zod": "^3.23.8"
},
"author": "iyxan23",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/iyxan23/nextrans/issues"
},
"homepage": "https://github.com/iyxan23/nextrans#readme",
"sideEffects": false
}