-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 980 Bytes
/
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
{
"name": "ton-highload-wallet-contract",
"version": "1.1.2",
"description": "TON Highload Wallet Contract",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"docs": "rm -fr docs && typedoc src/index.ts",
"build": "rm -rf dist && tsc --declaration",
"release": "npm run build && npm publish",
"test": "jest --verbose --runInBand"
},
"keywords": [
"TON",
"blockchain",
"crypto",
"wallet",
"highload"
],
"author": "ndatg",
"license": "MIT",
"repository": "https://github.com/ndatg/ton-highload-wallet-contract",
"devDependencies": {
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.22.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@ton/core": "^0.59.0",
"@ton/crypto": "^3.3.0",
"@ton/ton": "^15.1.0"
}
}