forked from ton-blockchain/TxTracer-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.1 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.1 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "txtracer-core",
"version": "0.3.1",
"description": "Core TxTracer library for collecting transaction information",
"main": "dist/index.js",
"scripts": {
"build": "tsc --declaration",
"lint": "eslint --cache .",
"test": "jest",
"fmt": "prettier --write -l --cache .",
"fmt:check": "prettier --check --cache .",
"precommit": "yarn fmt && yarn lint --fix && yarn build"
},
"keywords": [
"ton",
"tact",
"blockchain",
"tracing"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tact-lang/txtracer-core.git"
},
"author": "TON Studio",
"license": "MIT",
"bugs": {
"url": "https://github.com/tact-lang/txtracer-core/issues"
},
"homepage": "https://github.com/tact-lang/txtracer-core#readme",
"files": [
"dist",
"!dist/test"
],
"dependencies": {
"@ton-community/func-js": "^0.10.0",
"@ton/core": "^0.61.0",
"@ton/sandbox": "^0.36.0",
"@ton/ton": "^15.3.1",
"axios": "^1.6.7"
},
"devDependencies": {
"@ton/crypto": "^3.3.0",
"@ton/test-utils": "^0.10.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.0",
"esbuild": "^0.25.2",
"eslint": "^9.19.0",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-unused-imports": "^4.1.4",
"jest": "^29.7.0",
"prettier": "3.4.2",
"ts-jest": "^29.2.6",
"typescript": "^5.7.0",
"typescript-eslint": "^8.22.0"
},
"packageManager": "yarn@4.6.0",
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": false,
"printWidth": 100,
"semi": false,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "all",
"useTabs": false,
"overrides": [
{
"files": [
"*.yaml",
"*.yml"
],
"options": {
"tabWidth": 2
}
}
]
}
}