-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 851 Bytes
/
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
{
"name": "payriff-sdk-js",
"version": "1.2.0",
"keywords": [
"payriff",
"sdk",
"payment",
"gateway",
"typescript",
"javascript",
"nodejs"
],
"author": "Orkhan Karimov",
"homepage": "https://github.com/kerimovok/payriff-sdk-js",
"repository": {
"type": "git",
"url": "https://github.com/kerimovok/payriff-sdk-js.git"
},
"license": "MIT",
"description": "An unofficial TypeScript/JavaScript SDK for integrating with the Payriff payment gateway.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "bun build ./src/index.ts --outdir=dist --target=node --minify && bun run build:types",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0"
}
}