-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "@ton/tolk-js",
"version": "0.6.0",
"description": "Tolk Language compiler (next-generation FunC)",
"main": "dist/index.js",
"bin": "./dist/cli.js",
"files": [
"dist/*"
],
"scripts": {
"build": "rm -rf dist && tsc && yarn wasm:pack && yarn stdlib:pack && yarn wasm:dist && yarn stdlib:dist",
"wasm:pack": "node scripts/pack-wasm-to-base64.js",
"stdlib:pack": "node scripts/pack-stdlib-to-object.js",
"wasm:dist": "cp src/tolkfiftlib.js dist && cp src/tolkfiftlib.wasm.js dist",
"stdlib:dist": "cp -r src/tolk-stdlib dist && cp src/stdlib.tolk.js dist",
"test": "yarn wasm:pack && yarn stdlib:pack && yarn jest"
},
"author": "TON Blockchain",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ton-blockchain/tolk-js.git"
},
"devDependencies": {
"@ton/core": "^0.56.3",
"@ton/crypto": "^3.3.0",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"arg": "^5.0.2"
}
}