@ton-community/tlb-runtime
Version:
TL‑B Runtime is a library for parsing and (de)serializing data according to TL‑B schemas
64 lines • 1.68 kB
JSON
{
"name": "@ton-community/tlb-runtime",
"version": "1.0.0-alpha.3",
"description": "TL‑B Runtime is a library for parsing and (de)serializing data according to TL‑B schemas",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"prettier": "@ton/toolchain/prettier",
"keywords": [
"ton",
"blockchain",
"tl-b",
"runtime",
"typescript"
],
"author": "TON Tech",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ton-community/tlb-runtime.git"
},
"bugs": {
"url": "https://github.com/ton-community/tlb-runtime/issues"
},
"homepage": "https://github.com/ton-community/tlb-runtime#readme",
"devDependencies": {
"@changesets/cli": "^2.29.6",
"@ton/toolchain": "github:the-ton-tech/toolchain#v1",
"@types/jest": "^30.0.0",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@ton-community/tlb-codegen": "^2.0.0-beta.3",
"@ton-community/tlb-parser": "^0.1.5",
"@ton/core": "^0.61.0",
"@ton/crypto": "^3.3.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rimraf dist",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --max-warnings 0 --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
}
}