-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 4.88 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 4.88 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@tonappchain/sdk",
"version": "0.7.2",
"repository": "https://github.com/TacBuild/tac-sdk.git",
"author": "TAC. <developers@tac>",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"node": {
"types": "./dist/src/index.d.ts",
"require": "./dist/src/index.js",
"import": "./dist/src/index.js"
},
"browser": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"types": "./dist/src/index.d.ts",
"require": "./dist/src/index.js",
"import": "./dist/src/index.js",
"default": "./dist/src/index.js"
},
"./package.json": "./package.json",
"./dist": null,
"./dist/*": null,
"./src": null,
"./src/*": null,
"./artifacts": {
"types": "./dist/artifacts/index.d.ts",
"import": "./dist/artifacts/index.js",
"require": "./dist/artifacts/index.js"
},
"./artifacts/types/ton": {
"types": "./dist/artifacts/tonTypes.d.ts",
"import": "./dist/artifacts/tonTypes.js",
"require": "./dist/artifacts/tonTypes.js"
},
"./artifacts/types/tac": {
"types": "./dist/artifacts/tacTypes.d.ts",
"import": "./dist/artifacts/tacTypes.js",
"require": "./dist/artifacts/tacTypes.js"
},
"./artifacts/*": null,
"./*": null
},
"files": [
"dist"
],
"scripts": {
"litebuild": "rm -rf dist && tsc --declaration",
"build": "bash build.sh",
"build:artifacts:tac:dev": "cd artifacts/dev/l2-evm && npm i && npx hardhat compile && rsync -avh --delete ./artifacts ./scripts ./typechain-types ../tac/internal/",
"build:artifacts:ton:dev": "cd artifacts/dev/l1_tvm_ton && npm i && npm run compile:ts && npm run build:all && rsync -avh --delete ./build ./wrappers ../ton/internal/",
"build:artifacts:tac:testnet": "cd artifacts/testnet/l2-evm && npm i && npx hardhat compile && rsync -avh --delete ./artifacts ./scripts ./typechain-types ../tac/internal/",
"build:artifacts:ton:testnet": "cd artifacts/testnet/l1_tvm_ton && npm i && npm run compile:ts && npm run build:all && rsync -avh --delete ./build ./wrappers ../ton/internal/",
"build:artifacts:tac:mainnet": "cd artifacts/mainnet/l2-evm && npm i && npx hardhat compile && rsync -avh --delete ./artifacts ./scripts ./typechain-types ../tac/internal/",
"build:artifacts:ton:mainnet": "cd artifacts/mainnet/l1_tvm_ton && npm i && npm run compile:ts && npm run build:all && rsync -avh --delete ./build ./wrappers ../ton/internal/",
"build:artifacts:ton:all": "npm run build:artifacts:ton:dev && npm run build:artifacts:ton:testnet && npm run build:artifacts:ton:mainnet",
"build:artifacts:tac:all": "npm run build:artifacts:tac:dev && npm run build:artifacts:tac:testnet && npm run build:artifacts:tac:mainnet",
"build:artifacts": "npm run build:artifacts:ton:all && npm run build:artifacts:tac:all",
"test": "jest --verbose --runInBand",
"release": "npm run build && npx release-it",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --ignore-path .gitignore --write \"./src/**/*.+(js|ts|json)\""
},
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@orbs-network/ton-access": "^2.3.3",
"@tonappchain/ton-lite-client": "3.0.6",
"bn.js": "^5.2.3",
"cli-table3": "^0.6.5",
"dotenv": "^16.4.7"
},
"peerDependencies": {
"@ton/ton": ">=15",
"@tonconnect/ui": ">=2",
"ethers": ">=6",
"ton-crypto": ">=3"
},
"keywords": [],
"description": "",
"devDependencies": {
"@eslint/js": "^9.21.0",
"@jest/globals": "^29.7.0",
"@release-it/keep-a-changelog": "^7.0.0",
"@ton/sandbox": "^0.27.1",
"@ton/test-utils": "^0.5.0",
"@ton/ton": "16.2.2",
"@tonconnect/ui": "^2.0.11",
"@types/bn.js": "^5.1.6",
"@types/jest": "^29.5.14",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"ethers": "^6.13.5",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ton-crypto": "3.2.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.17.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
},
"npm": {
"publish": false
}
}
}