@towns-labs/rpc-connector 2.0.9 → 2.0.10
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 +71 -71
package/package.json
CHANGED
|
@@ -1,76 +1,76 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
2
|
+
"name": "@towns-labs/rpc-connector",
|
|
3
|
+
"version": "2.0.10",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/node/index.cjs",
|
|
6
|
+
"types": "./dist/node/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsdown",
|
|
9
|
+
"cb": "bun run clean && bun run build",
|
|
10
|
+
"clean": "rm -rf dist",
|
|
11
|
+
"lint": "eslint --format unix ./src --max-warnings=0",
|
|
12
|
+
"lint:fix": "bun run lint --fix",
|
|
13
|
+
"test": "vitest",
|
|
14
|
+
"test:ci": "echo 'CI test skipped'",
|
|
15
|
+
"watch": "tsdown --watch"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@connectrpc/connect": "^2.1.0"
|
|
19
|
+
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@bufbuild/protobuf": "^2.9.0",
|
|
22
|
+
"@connectrpc/connect-node": "^2.1.0",
|
|
23
|
+
"@connectrpc/connect-web": "^2.1.0",
|
|
24
|
+
"@types/node": "^20.14.8",
|
|
25
|
+
"@typescript-eslint/eslint-plugin": "^8.29.0",
|
|
26
|
+
"@typescript-eslint/parser": "^8.29.0",
|
|
27
|
+
"eslint": "^8.57.1",
|
|
28
|
+
"eslint-import-resolver-typescript": "^4.3.2",
|
|
29
|
+
"eslint-plugin-import-x": "^4.10.2",
|
|
30
|
+
"eslint-plugin-tsdoc": "^0.3.0",
|
|
31
|
+
"tsdown": "^0.12.3",
|
|
32
|
+
"typescript": "~5.8.3",
|
|
33
|
+
"vitest": "^3.2.3"
|
|
34
|
+
},
|
|
35
|
+
"exports": {
|
|
36
|
+
".": {
|
|
37
|
+
"types": "./dist/node/index.d.ts",
|
|
38
|
+
"import": {
|
|
39
|
+
"node": "./dist/node/index.js",
|
|
40
|
+
"browser": "./dist/web/index.js",
|
|
41
|
+
"default": "./dist/web/index.js"
|
|
42
|
+
},
|
|
43
|
+
"require": {
|
|
44
|
+
"node": "./dist/node/index.cjs",
|
|
45
|
+
"browser": "./dist/web/index.cjs",
|
|
46
|
+
"default": "./dist/web/index.cjs"
|
|
47
|
+
}
|
|
16
48
|
},
|
|
17
|
-
"
|
|
18
|
-
|
|
49
|
+
"./common": {
|
|
50
|
+
"types": "./dist/common/index.d.ts",
|
|
51
|
+
"import": "./dist/common/index.js",
|
|
52
|
+
"require": "./dist/common/index.cjs"
|
|
19
53
|
},
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"vitest": "^3.2.3"
|
|
54
|
+
"./package.json": "./package.json"
|
|
55
|
+
},
|
|
56
|
+
"files": [
|
|
57
|
+
"/dist"
|
|
58
|
+
],
|
|
59
|
+
"module": "./dist/node/index.js",
|
|
60
|
+
"peerDependencies": {
|
|
61
|
+
"@connectrpc/connect-node": ">=2.0.0",
|
|
62
|
+
"@connectrpc/connect-web": ">=2.0.0"
|
|
63
|
+
},
|
|
64
|
+
"peerDependenciesMeta": {
|
|
65
|
+
"@connectrpc/connect-node": {
|
|
66
|
+
"optional": true
|
|
34
67
|
},
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
"require": {
|
|
44
|
-
"node": "./dist/node/index.cjs",
|
|
45
|
-
"browser": "./dist/web/index.cjs",
|
|
46
|
-
"default": "./dist/web/index.cjs"
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
"./common": {
|
|
50
|
-
"types": "./dist/common/index.d.ts",
|
|
51
|
-
"import": "./dist/common/index.js",
|
|
52
|
-
"require": "./dist/common/index.cjs"
|
|
53
|
-
},
|
|
54
|
-
"./package.json": "./package.json"
|
|
55
|
-
},
|
|
56
|
-
"files": [
|
|
57
|
-
"/dist"
|
|
58
|
-
],
|
|
59
|
-
"module": "./dist/node/index.js",
|
|
60
|
-
"peerDependencies": {
|
|
61
|
-
"@connectrpc/connect-node": ">=2.0.0",
|
|
62
|
-
"@connectrpc/connect-web": ">=2.0.0"
|
|
63
|
-
},
|
|
64
|
-
"peerDependenciesMeta": {
|
|
65
|
-
"@connectrpc/connect-node": {
|
|
66
|
-
"optional": true
|
|
67
|
-
},
|
|
68
|
-
"@connectrpc/connect-web": {
|
|
69
|
-
"optional": true
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
|
-
"publishConfig": {
|
|
73
|
-
"access": "public"
|
|
74
|
-
},
|
|
75
|
-
"sideEffects": false
|
|
68
|
+
"@connectrpc/connect-web": {
|
|
69
|
+
"optional": true
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"publishConfig": {
|
|
73
|
+
"access": "public"
|
|
74
|
+
},
|
|
75
|
+
"sideEffects": false
|
|
76
76
|
}
|