-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.65 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.65 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "sofizpay-sdk-js",
"version": "1.1.11",
"type": "module",
"description": "A comprehensive JavaScript SDK for secure digital payments and transactions",
"main": "dist/sofizpay-sdk.cjs.js",
"module": "dist/sofizpay-sdk.esm.js",
"browser": "dist/sofizpay-sdk.umd.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/sofizpay-sdk.esm.js",
"require": "./dist/sofizpay-sdk.cjs.js",
"browser": "./dist/sofizpay-sdk.umd.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"update-version": "chmod +x scripts/update-version.sh && ./scripts/update-version.sh patch",
"release": "npm run update-version && npm run build && npm publish"
},
"keywords": [
"payment",
"digital-payments",
"transaction",
"sdk",
"sofizpay",
"finance",
"web3",
"javascript",
"typescript",
"nodejs",
"browser",
"react",
"vue"
],
"author": "SofizPay Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kenandarabeh/sofizpay-sdk.git"
},
"homepage": "https://github.com/kenandarabeh/sofizpay-sdk#readme",
"bugs": {
"url": "https://github.com/kenandarabeh/sofizpay-sdk/issues"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.1",
"rollup": "^4.45.0"
},
"dependencies": {
"axios": "^1.0.0",
"node-forge": "^1.3.1",
"stellar-sdk": "^12.0.0"
},
"peerDependencies": {
"axios": "^1.0.0",
"stellar-sdk": "^12.0.0"
}
}