-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 989 Bytes
/
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
{
"name": "@ton/convert-func-to-tolk",
"version": "0.6.0",
"description": "Convert FunC contracts to Tolk with a single npx command",
"main": "dist/index.js",
"bin": "./dist/cli.js",
"files": [
"dist/*"
],
"scripts": {
"grammar:wasm": "cd tree-sitter-func && tree-sitter generate && tree-sitter build-wasm --docker",
"build": "rm -rf dist && tsc && cp node_modules/web-tree-sitter/tree-sitter.wasm dist/ && cp tree-sitter-func/tree-sitter-func.wasm dist/",
"dev.ts": "ts-node dev.ts",
"test": "yarn jest"
},
"author": "TON Blockchain",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ton-blockchain/convert-func-to-tolk.git"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"tree-sitter-cli": "^0.20.6"
},
"dependencies": {
"arg": "^5.0.2",
"web-tree-sitter": "^0.22.6"
}
}