{
    "name": "@eliseev_s/tolk-tlb-transpiler",
    "version": "0.1.4",
    "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",
    "module": "dist/src/index.js",
    "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/tree-sitter-tolk": "^1.0.0",
        "@ton-community/tlb-codegen": "^2.0.0-beta.1",
        "commander": "^14.0.0",
        "web-tree-sitter": "^0.25.6"
    },
    "devDependencies": {
        "@ton/core": "^0.61.0",
        "@ton/crypto": "^3.3.0",
        "@ton/sandbox": "^0.33.0",
        "@ton/test-utils": "^0.8.0",
        "@ton/tolk-js": "^1.0.0",
        "@ton/ton": "^15.3.0",
        "@types/jest": "^30.0.0",
        "@types/node": "^24.0.4",
        "ts-jest": "^29.4.0",
        "ts-node": "^10.9.2",
        "typescript": "^5.0.0"
    },
    "scripts": {
        "check-types": "tsc --noEmit",
        "build": "npm run clean && tsc",
        "clean": "rm -rf dist",
        "prepublish": "npm run check-types && npm run test && npm run build",
        "dev": "npm run build && node dist/scripts/dev-transpile.js",
        "test": "npm run dev-transpile && npx jest",
        "dev-transpile": "ts-node scripts/dev-transpile.ts"
    }
}
