-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "@tychosdk/emulator",
"version": "0.2.6",
"description": "Tycho transaction emulator",
"main": "dist/index.js",
"license": "MIT",
"author": "Ivan Kalinin <i.kalinin@dexpa.io>",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/broxus/tycho-emulator.git"
},
"devDependencies": {
"@ton/core": "^0.62.0",
"@ton/crypto": "^3.3.0",
"@ton/sandbox": "^0.39.0",
"@ton/test-utils": "0.12.0",
"@types/jest": "^30.0.0",
"@types/node": "^18.15.11",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"axios": "^1.8.4",
"zod": "^3.24.2"
},
"peerDependencies": {
"@ton/core": ">=0.62.0",
"@ton/crypto": ">=3.3.0",
"@ton/sandbox": ">=0.39.0"
},
"scripts": {
"wasm:build": "./scripts/build-wasm.sh",
"wasm:copy": "mkdir -p dist && cp src/wasm/tycho_emulator_bg.wasm* ./dist/wasm/",
"test": "yarn jest src",
"build": "yarn wasm:build && rm -rf dist && yarn test && tsc && yarn wasm:copy",
"config:pack": "ts-node ./scripts/pack-config.ts"
}
}