-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.45 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
58
59
60
{
"name": "@tonpay/sdk",
"version": "2.9.17",
"description": "Tonpay JavaScript SDK",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheTonpay/tonpay-js-sdk.git"
},
"keywords": [
"tonpay",
"payments",
"sdk",
"typescript",
"blockchain",
"ton",
"toncoin",
"ecommerce",
"crypto",
"cryptocurrency",
"gateway",
"payment"
],
"author": "Arterialist",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheTonpay/tonpay-js-sdk/issues"
},
"homepage": "https://github.com/TheTonpay/tonpay-js-sdk#readme",
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"ton": "^13.3.0",
"ton-core": "^0.48.0",
"@tonpay/core": "^0.5.20",
"@orbs-network/ton-access": "^2.3.3"
},
"devDependencies": {
"typescript": "*",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^32.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.1",
"prettier": "^2.4.1"
}
}