UNPKG

@eliseev_s/tolk-tlb-transpiler

Version:

Transpile Tolk structs to TLB definitions and generate TypeScript wrappers for TON blockchain smart contracts

65 lines (64 loc) 1.82 kB
{ "name": "@eliseev_s/tolk-tlb-transpiler", "version": "3.0.0", "description": "Transpile Tolk structs to TLB definitions and generate TypeScript wrappers for TON blockchain smart contracts", "main": "dist/src/index.js", "types": "dist/src/index.d.ts", "publishConfig": { "access": "public" }, "bin": { "tolk-tlb": "dist/bin/cli.js" }, "files": [ "dist", "README.md" ], "keywords": [ "tolk", "tlb", "transpiler", "ton", "blockchain", "codegen", "wrapper", "smart-contract" ], "license": "MIT", "dependencies": { "@eliseev_s/tlb-codegen": "^1.0.1", "@eliseev_s/tree-sitter-tolk": "^1.4.0", "commander": "^14.0.0", "typescript": "^5.8.3", "web-tree-sitter": "^0.25.6" }, "peerDependencies": { "@ton/core": ">=0.61.0" }, "peerDependenciesMeta": { "@ton/core": { "optional": true } }, "devDependencies": { "@ton/core": "^0.63.0", "@ton/crypto": "^3.3.0", "@ton/sandbox": "^0.41.0", "@ton/test-utils": "^0.8.0", "@ton/tolk-js": "^1.4.1", "@ton/ton": "^16.1.0", "@types/jest": "^30.0.0", "@types/node": "^24.0.4", "ts-jest": "^29.4.0", "ts-node": "^10.9.2" }, "scripts": { "check-types": "tsc --noEmit", "build": "npm run clean && tsc", "clean": "rm -rf dist", "prepublish": "npm run check-types && npm run build", "dev": "npm run build && ts-node scripts/dev-transpile.ts", "test": "npm run dev-transpile && node --experimental-vm-modules node_modules/.bin/jest", "dev-transpile": "ts-node scripts/dev-transpile.ts" } }