-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.28 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@swervpaydev/sdk",
"version": "0.0.23",
"description": "Official Swervpay Node.JS SDK",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run build:tsup",
"build:tsup": "tsup --dts-resolve",
"typecheck": "tsc --noEmit",
"changeset:add": "changeset",
"changeset:version": "changeset version",
"changeset:release": "pnpm run build && changeset publish",
"changeset:beta": "changeset pre enter beta",
"changeset:normal": "changeset pre exit"
},
"keywords": [
"Swyftpay",
"Swervpay",
"Card",
"Issuing"
],
"author": "",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/debug": "^4.1.12",
"@types/node": "^20.9.2",
"@types/uuid": "^9.0.7",
"rimraf": "^5.0.5",
"tsup": "^8.0.0",
"typed-emitter": "^2.1.0",
"typescript": "^5.2.2"
},
"dependencies": {
"debug": "^4.3.4",
"uuid": "^9.0.1",
"zod": "^3.22.4"
}
}