-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.43 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
{
"name": "@tonpay/react",
"version": "0.1.8",
"description": "Tonpay React utilities",
"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-react.git"
},
"keywords": [
"tonpay",
"react",
"payment",
"ton",
"crypto",
"blockchain",
"payments",
"ecommerce"
],
"author": "Arterialist",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheTonpay/tonpay-react/issues"
},
"homepage": "https://github.com/TheTonpay/tonpay-react#readme",
"dependencies": {
"react": "^18.2.0",
"@types/react": "^18.0.28",
"ton": "^13.3.0",
"ton-core": "^0.48.0",
"@tonpay/core": "^0.3.12",
"@orbs-network/ton-access": "^2.3.3"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"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"
}
}