{
  "name": "transferum",
  "version": "1.8.0",
  "description": "A language for describing interactions between components — type-safe primitives that compose into interaction graphs with compile-time-checked contracts",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Smoren/transferum-ts.git"
  },
  "author": {
    "name": "Smoren",
    "email": "ofigate@gmail.com",
    "url": "https://github.com/Smoren"
  },
  "homepage": "https://github.com/Smoren/transferum-ts#readme",
  "bugs": {
    "url": "https://github.com/Smoren/transferum-ts/issues"
  },
  "main": "./lib/index.js",
  "module": "./es/index.js",
  "scripts": {
    "build": "npm run build:commonjs && npm run build:es",
    "build:commonjs": "rimraf lib && tsc --target es6 --outDir lib --module commonjs --declaration --rootDir src",
    "build:es": "rimraf es && tsc --target es6 --outDir es --module es6 --moduleResolution node10 --rootDir src",
    "test": "jest --coverage",
    "jest": "jest",
    "lint": "eslint src/",
    "lint-tests": "eslint tests/",
    "prepublishOnly": "npm run build",
    "docs": "typedoc src/index.ts --navigation.includeCategories --out docs/api"
  },
  "files": [
    "es",
    "lib",
    "src",
    "tests"
  ],
  "keywords": [
    "reactive-pipeline",
    "data-flow",
    "frp",
    "stream",
    "observable",
    "rxjs-alternative",
    "rxjs",
    "polling",
    "transfer",
    "bridge",
    "pipeline",
    "reactive",
    "state-management",
    "composable",
    "polling",
    "event-bus",
    "pubsub",
    "real-time",
    "debounce",
    "throttle",
    "middleware",
    "iot",
    "game-development",
    "typescript",
    "type-safe",
    "zero-dependency"
  ],
  "devDependencies": {
    "@borderless/ts-scripts": "^0.15.0",
    "@eslint/js": "^9.39.5",
    "@types/jest": "^30.0.0",
    "@types/node": "^26.1.1",
    "eslint": "^9.39.5",
    "globals": "^17.11.0",
    "jest": "^30.4.2",
    "jiti": "^2.7.0",
    "rimraf": "^6.1.3",
    "ts-expect": "^1.3.0",
    "ts-jest": "^29.4.11",
    "typedoc": "^0.28.20",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.67.0"
  },
  "types": "./lib/index.d.ts",
  "contributors": [],
  "jsnext:main": "./es/index.js",
  "sideEffects": false
}
