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