@defold-typescript/transpiler 0.6.0 → 0.7.0

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 +2 -2
  2. package/package.json +9 -2
package/README.md CHANGED
@@ -12,8 +12,8 @@ Most users do not depend on this directly — the
12
12
  [`defold-typescript`](https://www.npmjs.com/package/@defold-typescript/cli) CLI
13
13
  drives it for you.
14
14
 
15
- See the repository [README](https://github.com/king8fisher/defold-typescript#readme)
16
- and [`docs/guide/`](https://github.com/king8fisher/defold-typescript/tree/main/docs/guide)
15
+ See the repository [README](https://github.com/defold-typescript/toolchain#readme)
16
+ and [`docs/guide/`](https://github.com/defold-typescript/toolchain/tree/main/docs/guide)
17
17
  for the full workflow.
18
18
 
19
19
  ## License
package/package.json CHANGED
@@ -1,8 +1,15 @@
1
1
  {
2
2
  "name": "@defold-typescript/transpiler",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "description": "TypeScript-to-Lua build pipeline tuned for Defold's runtime.",
5
5
  "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/defold-typescript/toolchain.git",
9
+ "directory": "packages/transpiler"
10
+ },
11
+ "homepage": "https://github.com/defold-typescript/toolchain#readme",
12
+ "bugs": "https://github.com/defold-typescript/toolchain/issues",
6
13
  "type": "module",
7
14
  "main": "./dist/index.js",
8
15
  "types": "./dist/index.d.ts",
@@ -28,7 +35,7 @@
28
35
  "test": "bun test"
29
36
  },
30
37
  "dependencies": {
31
- "@defold-typescript/types": "0.6.0",
38
+ "@defold-typescript/types": "0.7.0",
32
39
  "@typescript-to-lua/language-extensions": "1.19.0",
33
40
  "typescript-to-lua": "^1.36.0"
34
41
  }