typenative 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -4
package/README.md CHANGED
@@ -5,7 +5,7 @@ Build native applications using Typescript.
5
5
  ## Get Started
6
6
 
7
7
  - Write a file `test.ts` with content `console.log('Hello World!'); getchar()` or any other message.
8
- - Run `npx typenative --target test.ts`
8
+ - Run `npx typenative --source test.ts`
9
9
  - Run the executable in `dist/native.exe` and see your message
10
10
 
11
11
  ## Todo
package/package.json CHANGED
@@ -1,12 +1,11 @@
1
1
  {
2
2
  "name": "typenative",
3
- "version": "0.0.1",
4
- "description": "",
5
- "main": "bin/index.js",
3
+ "version": "0.0.2",
4
+ "description": "Build native applications using Typescript.",
5
+ "type": "module",
6
6
  "bin": {
7
7
  "typenative": "bin/index.js"
8
8
  },
9
- "type": "module",
10
9
  "scripts": {
11
10
  "build": "tsc",
12
11
  "watch": "tsc --watch",