@xrpckit/target-go-server 0.0.1 → 0.0.2
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 +11 -4
package/package.json
CHANGED
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xrpckit/target-go-server",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Go server code generator for xRPC - generates idiomatic Go HTTP handlers from contracts",
|
|
4
5
|
"type": "module",
|
|
5
6
|
"license": "MIT",
|
|
7
|
+
"author": "mwesox",
|
|
6
8
|
"repository": {
|
|
7
9
|
"type": "git",
|
|
8
|
-
"url": "https://github.com/mwesox/xrpc.git",
|
|
10
|
+
"url": "git+https://github.com/mwesox/xrpc.git",
|
|
9
11
|
"directory": "packages/target-go-server"
|
|
10
12
|
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/mwesox/xrpc/issues"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://github.com/mwesox/xrpc#readme",
|
|
17
|
+
"keywords": ["xrpc", "rpc", "go", "golang", "server", "codegen", "api", "type-safe"],
|
|
11
18
|
"publishConfig": {
|
|
12
19
|
"access": "public"
|
|
13
20
|
},
|
|
@@ -27,8 +34,8 @@
|
|
|
27
34
|
"build": "tsup src/index.ts --format esm --dts --clean"
|
|
28
35
|
},
|
|
29
36
|
"dependencies": {
|
|
30
|
-
"@xrpckit/codegen": "^0.0.
|
|
31
|
-
"@xrpckit/parser": "^0.0.
|
|
37
|
+
"@xrpckit/codegen": "^0.0.2",
|
|
38
|
+
"@xrpckit/parser": "^0.0.2"
|
|
32
39
|
},
|
|
33
40
|
"devDependencies": {
|
|
34
41
|
"@types/node": "^22.0.0",
|