forked from ton-core/ton
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
68 lines (68 loc) · 1.65 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
{
"name": "@ton/ton",
"version": "15.1.0",
"repository": "https://github.com/ton-org/ton.git",
"author": "Whales Corp. <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"docs": "rm -fr docs && typedoc src/index.ts",
"build": "rm -fr dist && tsc --declaration",
"test": "jest --verbose --runInBand",
"release": "yarn build && yarn release-it --npm.yarn1"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^5.0.0",
"@ton/core": "^0.59.0",
"@ton/crypto": "3.2.0",
"@ton/emulator": "^2.1.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"buffer": "^6.0.3",
"expect": "^27.1.0",
"jest": "^27.1.0",
"jest-mock": "^27.1.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-typescript": "^5.5.2",
"karma-webpack": "^5.0.0",
"prando": "^6.0.1",
"release-it": "^17.1.1",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"ts-node": "^10.7.0",
"typedoc": "^0.23.24",
"typescript": "^5.6.3",
"webpack": "^5.51.2"
},
"dependencies": {
"axios": "^1.6.7",
"dataloader": "^2.0.0",
"symbol.inspect": "1.0.1",
"teslabot": "^1.3.0",
"zod": "^3.21.4"
},
"peerDependencies": {
"@ton/core": ">=0.59.0",
"@ton/crypto": ">=3.2.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
}
},
"packageManager": "[email protected]"
}