-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.01 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.01 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
{
"name": "@ton/sandbox",
"version": "0.41.0",
"description": "TON transaction emulator",
"main": "dist/index.js",
"license": "MIT",
"author": "TonTech",
"files": [
"jest-environment.js",
"jest-reporter.js",
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ton-org/sandbox"
},
"prettier": "@ton/toolchain/prettier",
"devDependencies": {
"@ton-community/func-js": "^0.10.0",
"@ton/core": "^0.61.0",
"@ton/crypto": "3.3.0",
"@ton/test-utils": "^0.7.0",
"@ton/tolk-js": "^1.0.0",
"@ton/ton": "^15.2.1",
"@ton/toolchain": "the-ton-tech/toolchain#v1.4.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"eslint": "^9.28.0",
"globals": "^16.4.0",
"jest": "^30.0.5",
"jest-config": "^30.0.5",
"jest-environment-node": "^30.0.5",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@ton-community/func-js": ">=0.10.0",
"@ton/core": ">=0.61.0",
"@ton/crypto": ">=3.3.0",
"@ton/test-utils": ">=0.7.0",
"jest": "^29.5.0 || ^30.0.5"
},
"peerDependenciesMeta": {
"@ton/test-utils": {
"optional": true
},
"jest": {
"optional": true
}
},
"scripts": {
"wasm:pack": "ts-node ./scripts/pack-wasm.ts",
"wasm:copy": "cp src/executor/emulator-emscripten.js src/executor/emulator-emscripten.wasm.js src/executor/emulator-emscripten.debugger.js src/executor/emulator-emscripten.debugger.bpatch.gzip.js ./dist/executor",
"test": "yarn wasm:pack && yarn jest src",
"build": "rm -rf dist && yarn wasm:pack && tsc && yarn wasm:copy",
"bt": "yarn build && yarn test",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --max-warnings 0 --fix",
"config:pack": "ts-node ./scripts/pack-config.ts"
},
"packageManager": "yarn@4.9.2",
"dependencies": {
"@vscode/debugadapter": "^1.68.0",
"chalk": "^4.1.2",
"fflate": "^0.8.2",
"table": "^6.9.0",
"ton-assembly": "0.6.1"
}
}