@plugjs/typescript 0.6.5 → 0.6.7
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.
- package/README.md +2 -1
- package/package.json +22 -4
package/README.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
TypeScript plugin for the PlugJS Build System
|
|
2
2
|
=============================================
|
|
3
3
|
|
|
4
|
-
|
|
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.
|
|
3
|
+
"version": "0.6.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -30,14 +30,32 @@
|
|
|
30
30
|
"author": "Juit Developers <developers@juit.com>",
|
|
31
31
|
"license": "Apache-2.0",
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"typescript": "^5.5.
|
|
33
|
+
"typescript": "^5.5.4"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"@plugjs/plug": "0.6.
|
|
36
|
+
"@plugjs/plug": "0.6.7"
|
|
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
|
}
|