@plugjs/typescript 0.6.5 → 0.6.6

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 -1
  2. package/package.json +21 -3
package/README.md CHANGED
@@ -1,7 +1,8 @@
1
1
  TypeScript plugin for the PlugJS Build System
2
2
  =============================================
3
3
 
4
- Prototype build system from [Juit GmbH](https://www.juit.com/)
4
+ Core TypeScript support (transpilation and type checking) for the PlugJS build
5
+ system.
5
6
 
6
7
  * [Copyright Notice](https://github.com/plugjs/plug/blob/main/NOTICE.md)
7
8
  * [License](https://github.com/plugjs/plug/blob/main/LICENSE.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plugjs/typescript",
3
- "version": "0.6.5",
3
+ "version": "0.6.6",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -33,11 +33,29 @@
33
33
  "typescript": "^5.5.3"
34
34
  },
35
35
  "peerDependencies": {
36
- "@plugjs/plug": "0.6.5"
36
+ "@plugjs/plug": "0.6.6"
37
37
  },
38
38
  "files": [
39
39
  "*.md",
40
40
  "dist/",
41
41
  "src/"
42
- ]
42
+ ],
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "git+ssh://git@github.com/plugjs/plug.git"
46
+ },
47
+ "keywords": [
48
+ "build",
49
+ "compile",
50
+ "ecmascript",
51
+ "javascript",
52
+ "node",
53
+ "plugjs",
54
+ "transpile",
55
+ "typescript"
56
+ ],
57
+ "bugs": {
58
+ "url": "https://github.com/plugjs/plug/issues"
59
+ },
60
+ "homepage": "https://github.com/plugjs/plug/blob/main/workspaces/typescript/#readme"
43
61
  }