{
  "$schema": "https://raw.githubusercontent.com/SchemaStore/schemastore/refs/heads/master/src/schemas/json/package.json",
  "name": "@tact-lang/compiler",
  "version": "1.6.5",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tact-lang/tact.git"
  },
  "homepage": "https://tact-lang.org",
  "description": "Tact is a next-gen smart contract language for TON",
  "license": "MIT",
  "contributors": [
    {
      "name": "Steve Korshakov",
      "email": "steve@korshakov.com"
    },
    {
      "name": "TON Studio",
      "url": "https://tonstudio.io/"
    }
  ],
  "scripts": {
    "compare": "ts-node src/test/utils/compare-logs.ts",
    "build:fast": "yarn clean && yarn gen:grammar && yarn gen:stdlib && yarn gen:func-js && tsc --project tsconfig.fast.json && yarn copy:stdlib && yarn copy:func",
    "gen:config": "ts-to-zod -k --skipValidation src/config/config.ts src/config/config.zod.ts",
    "gen:grammar": "pgen src/grammar/grammar.gg -o src/grammar/grammar.ts",
    "gen:stdlib": "ts-node src/stdlib/stdlib.build.ts",
    "gen:func-js": "ts-node src/func/func.build.ts",
    "gen:contracts:examples": "ts-node examples/contracts.build.ts",
    "gen:contracts:test": "ts-node src/test/contracts.build.ts",
    "gen:contracts:benchmarks:tact": "ts-node src/benchmarks/bench.build.ts",
    "gen:contracts:benchmarks:func": "ts-node src/benchmarks/func.build.ts",
    "gen:contracts:benchmarks": "yarn gen:contracts:benchmarks:tact && yarn gen:contracts:benchmarks:func",
    "gen:contracts:test:map": "ts-node ./src/test/e2e-emulated/map-tests/generate.ts",
    "gen:contracts:all": "yarn gen:contracts:examples && yarn gen:contracts:test && yarn gen:contracts:benchmarks && yarn gen:contracts:test:map",
    "gen": "yarn gen:grammar && yarn gen:stdlib && yarn gen:func-js && yarn gen:contracts:all",
    "clean": "rm -fr dist",
    "cleanall": "rm -fr dist node_modules",
    "copy:stdlib": "ts-node src/stdlib/copy.build.ts",
    "copy:func": "ts-node src/func/copy.build.ts",
    "build": "cross-env NODE_OPTIONS=--max_old_space_size=4096 tsc && yarn copy:stdlib && yarn copy:func",
    "test": "jest",
    "test:fast": "jest --config=./jest-fast.config.js",
    "bench": "yarn gen:contracts:benchmarks && cross-env PRINT_TABLE=true jest ./src/benchmarks",
    "bench:ci": "yarn gen:contracts:benchmarks && cross-env PRINT_TABLE=false jest ./src/benchmarks",
    "bench:update": "yarn gen:contracts:benchmarks && cross-env PRINT_TABLE=true ts-node src/benchmarks/update.build.ts",
    "bench:add": "ts-node src/benchmarks/prompt.build.ts && yarn gen:contracts:benchmarks && cross-env PRINT_TABLE=true ADD=true ts-node src/benchmarks/update.build.ts",
    "coverage": "cross-env COVERAGE=true NODE_OPTIONS=--max_old_space_size=4096 jest --config=./jest-ci.config.js",
    "type": "tsc --noEmit",
    "lint": "yarn eslint .",
    "fmt": "yarn prettier -l -w .",
    "fmt:check": "yarn prettier --check .",
    "spell": "yarn cspell --no-progress \"**\"",
    "knip": "knip",
    "lint:all": "yarn gen:stdlib && yarn lint && yarn fmt:check && yarn spell && yarn knip",
    "all": "yarn clean && yarn gen && yarn build && yarn coverage && yarn lint:all",
    "next-version": "ts-node version.build.ts",
    "random-ast": "ts-node ./src/ast/random-ast.ts",
    "top10": "find . -type f -exec du -h {} + | sort -rh | head -n 10"
  },
  "files": [
    "dist/**/*",
    "bin/**/*",
    "!src/**/*",
    "!src/benchmarks",
    "!dist/benchmarks",
    "!**/test",
    "!dist/**/output",
    "!/docs",
    "!**/*.build.*",
    "!**/*.spec.js",
    "!**/*.spec.d.ts",
    "!**/*.tsbuildinfo",
    "!**/*.infra.ts"
  ],
  "main": "./dist/index.js",
  "bin": {
    "tact": "bin/tact.js",
    "unboc": "bin/unboc.js"
  },
  "dependencies": {
    "@tact-lang/opcode": "^0.3.0",
    "@ton/core": "0.60.1",
    "@ton/crypto": "^3.2.0",
    "@tonstudio/parser-runtime": "^0.0.1",
    "blockstore-core": "1.0.5",
    "change-case": "^4.1.2",
    "ipfs-unixfs-importer": "9.0.10",
    "json-bigint": "^1.0.0",
    "path-normalize": "^6.0.13",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@swc/core": "^1.10.7",
    "@swc/jest": "^0.2.37",
    "@tact-lang/coverage": "^0.0.8",
    "@tact-lang/ton-abi": "^0.0.3",
    "@tact-lang/ton-jest": "^0.0.4",
    "@ton/sandbox": "^0.27.0",
    "@ton/test-utils": "^0.5.0",
    "@tonstudio/pgen": "^0.0.1",
    "@types/diff": "^7.0.0",
    "@types/glob": "^8.1.0",
    "@types/jest": "^29.5.12",
    "@types/json-bigint": "^1.0.4",
    "@types/node": "^22.5.0",
    "@typescript-eslint/eslint-plugin": "^8.21.0",
    "@typescript-eslint/parser": "^8.21.0",
    "chalk": "4.1.2",
    "cli-table3": "^0.6.5",
    "cross-env": "^7.0.3",
    "cspell": "^8.8.3",
    "diff": "^7.0.0",
    "eslint": "^8.57.0",
    "eslint-plugin-jest": "^28.11.0",
    "fast-check": "^4.0.0",
    "glob": "^8.1.0",
    "husky": "^9.1.5",
    "jest": "^29.3.1",
    "knip": "^5.24.1",
    "prando": "^6.0.1",
    "prettier": "^3.2.5",
    "ts-jest": "^29.0.3",
    "ts-node": "^10.9.1",
    "ts-to-zod": "^3.15.0",
    "typescript": "~5.6.2"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "packageManager": "yarn@1.22.22",
  "engines": {
    "node": ">=22.0.0"
  }
}
