-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.23 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@ton-defi.org/ton-connection",
"description": "Javascript library for connecting to ton accounts",
"version": "0.8.1",
"license": "MIT",
"author": "ton-defi.org",
"repository": {
"type": "git",
"url": "git+https://github.com/ton-defi-org/ton-connection.git"
},
"bugs": {
"url": "https://github.com/ton-defi-org/ton-connection/issues"
},
"homepage": "https://github.com/ton-defi-org/ton-connection#readme",
"scripts": {
"prettier": "npx prettier --write '{test,lib}/**/*.{ts,js,json}'",
"eslint": "npx eslint --fix '{test,lib}/**/*.{ts,js,json}'",
"test": "mocha --exit test/**/*.spec.ts",
"test:coverage": "nyc mocha --exit test/**/*.spec.ts",
"test:watch": "mocha --watch --watch-files test/**/*.ts,lib/**/*.ts,contracts/**/*.ts test/**/*.spec.ts",
"build": "ts-node ./build/_build.ts",
"deploy": "ts-node ./build/_deploy.ts",
"dist": "tsc",
"deploy:testnet": "ts-node ./build/_deploy.ts",
"_postinstall": "ts-node ./build/_setup.ts"
},
"files": [
"dist"
],
"types": "dist/index.d.ts",
"main": "dist/index.js",
"devDependencies": {
"@swc/core": "^1.2.177",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.41",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.3.1",
"eslint": "^8.16.0",
"fast-glob": "^3.2.11",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prando": "^6.0.1",
"prettier": "2.6.2",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"ton-contract-executor": "^0.5.0",
"ts-node": "^10.4.0",
"ts-sinon": "^2.0.2",
"typescript": "^4.5.4"
},
"prettier": {
"printWidth": 100
},
"mocha": {
"require": [
"chai",
"ts-node/register"
],
"timeout": 20000
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@aws-crypto/sha256-js": "^2.0.1",
"@tonconnect/sdk": "^2.0.7",
"axios-request-throttle": "^1.0.0",
"dotenv": "^16.0.0",
"ton": "^12.1.5",
"ton-contracts": "^3.1.0",
"ton-crypto": "^3.1.0",
"ton-x": "^2.0.0-beta9"
}
}