-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "@tonpay/core",
"version": "0.5.20",
"description": "Tonpay core utilities and tools to interact with Tonpay core entities and create various deeplinks for external usage.",
"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-core.git"
},
"keywords": [
"tonpay",
"payment",
"ton",
"crypto",
"blockchain",
"payments",
"ecommerce"
],
"author": "Arterialist",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheTonpay/tonpay-core/issues"
},
"homepage": "https://github.com/TheTonpay/tonpay-core#readme",
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"ton": "^13.3.0",
"ton-core": "^0.48.0"
},
"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"
}
}