{ "name": "ts-types-lang", "version": "0.0.4", "description": "A runtime for typescript's type system that turns it into a general purpose, purely functional programming language with effects!", "main": "stdlib/effects.ts", "repository": "https://github.com/phenax/ts-types-runtime", "author": "Akshay Nair ", "license": "MIT", "bin": { "tsr": "./bin.js" }, "scripts": { "build": "tsc", "cli": "ts-node src/index.ts", "docs": "typedoc --plugin typedoc-plugin-markdown ./stdlib/*.ts", "format": "prettier --write ./**/*.ts", "postinstall": "yarn build", "prepublish": "yarn build" }, "dependencies": { "@types/node": "^18.11.18", "@types/uuid": "^9.0.0", "commander": "^9.5.0", "ts-morph": "^17.0.1", "typescript": "^4.9.4", "uuid": "^9.0.0" }, "devDependencies": { "prettier": "^2.8.3", "ts-node": "^10.9.1", "typedoc": "^0.23.24", "typedoc-plugin-markdown": "^3.14.0" } }