-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 KB
/
package.json
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
{
"name": "@ton/sandbox",
"version": "0.25.0",
"description": "TON transaction emulator",
"main": "dist/index.js",
"license": "MIT",
"author": "TonTech",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ton-org/sandbox"
},
"devDependencies": {
"@ton/core": "^0.59.1",
"@ton/crypto": "3.3.0",
"@ton/test-utils": "^0.3.1",
"@ton/ton": "^15.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@ton/core": ">=0.58.1",
"@ton/crypto": ">=3.3.0"
},
"scripts": {
"wasm:pack": "ts-node ./scripts/pack-wasm.ts",
"wasm:copy": "cp src/executor/emulator-emscripten.js src/executor/emulator-emscripten.wasm.js ./dist/executor",
"test": "yarn wasm:pack && yarn jest src",
"build": "rm -rf dist && yarn wasm:pack && yarn test && tsc && yarn wasm:copy",
"config:pack": "ts-node ./scripts/pack-config.ts"
},
"packageManager": "yarn@3.6.1"
}