summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--package.json6
2 files changed, 8 insertions, 2 deletions
diff --git a/README.md b/README.md
index de5c6b1..313c40a 100644
--- a/README.md
+++ b/README.md
@@ -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.
+![KaiScript example code](https://imgur.com/a/kaiscript-example-IXCEB4d)
+
## 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"
},