diff options
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | package.json | 6 |
2 files changed, 8 insertions, 2 deletions
@@ -4,6 +4,8 @@ This means that you can write programs inside TypeScript that evaluate without running the code. The inferred type of a KaiScript program is always exactly equal to the runtime value. + + ## Using KaiScript To see what KaiScript is capable of, take a look at the guided tour here: [[EXAMPLES]](./examples/README.md) @@ -28,7 +30,7 @@ You can't. > How can I publish a package for KaiScript? -KaiScript doesn't have its own package manager, but it works natively with npm. +KaiScript doesn't have its own package manager yet, but it works natively with npm. If you've written a useful library, just export it like so: ```typescript diff --git a/package.json b/package.json index a0d5265..bd57cb4 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,11 @@ { "name": "@aberrantflux/kai-script", "description": "A type safe framework for TypeScript", - "version": "0.2.0", + "version": "0.2.1", + "repository": { + "type": "git", + "url": "git+https://git.aberrantflux.xyz/kai-script.git/" + }, "scripts": { "build": "tsc" }, |
