diff options
| author | Akshay Nair <phenax5@gmail.com> | 2023-01-07 00:59:00 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2023-01-07 00:59:00 +0530 |
| commit | 0b78c5c8a138d755be3f68c726426011a81130f4 (patch) | |
| tree | 91677db072f5d87ecd087d0782a09b274f8dcb7d | |
| parent | 8b052f991279aa2776e45e9ca3a370c7c3418bdd (diff) | |
| download | ts-types-lang-0b78c5c8a138d755be3f68c726426011a81130f4.tar.gz ts-types-lang-0b78c5c8a138d755be3f68c726426011a81130f4.zip | |
chore: minor changes
| -rw-r--r-- | README.md | 16 | ||||
| -rw-r--r-- | package.json | 7 | ||||
| -rw-r--r-- | yarn.lock | 9 |
3 files changed, 16 insertions, 16 deletions
@@ -1,2 +1,14 @@ -# ts-types-runtime-environment -A runtime for TS types +# TS Types lang +A stupid runtime for TS types! + +Take a look at the [./examples][./examples] directory for examples on how to write a program in typescript types + +To run it - +```bash +npx ts-types-lang ./examples/guess-number.ts +``` + +### Why? + +I dunno + diff --git a/package.json b/package.json index 0f4a010..4ec42b3 100644 --- a/package.json +++ b/package.json @@ -6,9 +6,7 @@ "repository": "https://github.com/phenax/ts-types-runtime-environment", "author": "Akshay Nair <phenax5@gmail.com>", "license": "MIT", - "bin": { - "tsr": "./dist/index.js" - }, + "bin": "./dist/index.js", "scripts": { "build": "tsc", "postinstall": "yarn build", @@ -22,7 +20,6 @@ "devDependencies": { "@types/node": "^18.11.18", "@types/uuid": "^9.0.0", - "ts-node": "^10.9.1", - "ts-types-lang": "^0.0.0" + "ts-node": "^10.9.1" } } @@ -277,15 +277,6 @@ ts-node@^10.9.1: v8-compile-cache-lib "^3.0.1" yn "3.1.1" -ts-types-lang@^0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/ts-types-lang/-/ts-types-lang-0.0.0.tgz#bf7eb3f25f19d321c9352fed06d4320315874baa" - integrity sha512-w5US2+K5VuO8oFz/cD8XS53MZwEr4PIIpHaGAtCeKCGCe+F5Wg2lFQtHt77LZ4S+EZFzKPpVvKXBy9VSvD7DFA== - dependencies: - ts-morph "^17.0.1" - typescript "^4.9.4" - uuid "^9.0.0" - typescript@^4.9.4: version "4.9.4" resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78" |
