@macroforge/typescript-plugin 0.1.0 → 0.1.4
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/package.json +6 -7
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@macroforge/typescript-plugin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "TypeScript language service plugin that augments classes decorated with @derive to include macro-generated methods.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/rymskip/macroforge.git"
|
|
10
|
+
"url": "git+https://github.com/rymskip/macroforge-ts.git"
|
|
11
11
|
},
|
|
12
12
|
"keywords": [
|
|
13
13
|
"typescript",
|
|
@@ -20,20 +20,19 @@
|
|
|
20
20
|
"author": "macroforge contributors",
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"bugs": {
|
|
23
|
-
"url": "https://github.com/rymskip/macroforge/issues"
|
|
23
|
+
"url": "https://github.com/rymskip/macroforge-ts/issues"
|
|
24
24
|
},
|
|
25
|
-
"homepage": "https://github.com/rymskip/macroforge#readme",
|
|
25
|
+
"homepage": "https://github.com/rymskip/macroforge-ts#readme",
|
|
26
26
|
"files": [
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
29
|
"scripts": {
|
|
30
30
|
"build": "tsc -p tsconfig.json",
|
|
31
31
|
"clean": "rm -rf dist",
|
|
32
|
-
"test": "bun run build && node --test tests/**/*.test.js"
|
|
33
|
-
"prepublishOnly": "bun run clean && bun run build"
|
|
32
|
+
"test": "bun run build && node --test tests/**/*.test.js"
|
|
34
33
|
},
|
|
35
34
|
"dependencies": {
|
|
36
|
-
"macroforge": "^0.1.
|
|
35
|
+
"macroforge": "^0.1.4"
|
|
37
36
|
},
|
|
38
37
|
"peerDependencies": {
|
|
39
38
|
"typescript": ">=5.0.0"
|