forked from ton-core/ton
-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.77 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.77 KB
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
{
"name": "@ton/ton",
"version": "16.2.1",
"repository": "https://github.com/ton-org/ton.git",
"author": "Whales Corp. <developers@whalescorp.com>",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist",
"!*.test.*",
"!*.spec.*",
"!*.trait.*",
"!__snapshots__",
"!__testdata__",
"!__tests__"
],
"scripts": {
"build": "rm -fr dist && tsc -p ./tsconfig.build.json",
"typecheck": "tsc",
"test": "jest --verbose",
"format": "biome format --write .",
"format:check": "biome format .",
"coverage": "jest -c ./jest-coverage.config.js",
"release": "yarn build && yarn release-it --npm.yarn1"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@release-it/keep-a-changelog": "^5.0.0",
"@swc/core": "^1.15.3",
"@swc/jest": "^0.2.39",
"@ton/core": "^0.63.0",
"@ton/crypto": "3.2.0",
"@ton/sandbox": "^0.40.0",
"@ton/test-utils": "^0.12.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"jest": "^29.7.0",
"release-it": "^17.1.1",
"typescript": "^5.6.3"
},
"dependencies": {
"axios": "^1.6.7",
"dataloader": "^2.0.0",
"zod": "^3.21.4"
},
"peerDependencies": {
"@ton/core": ">=0.63.0 <1.0.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": "yarn@3.4.1"
}