forked from dizys/orpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 981 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@libertymp/orpc",
"version": "0.0.5",
"publishConfig": {
"access": "public"
},
"description": "The type-safe Node.js and browser RPC library built on top of socket.io.",
"repository": {
"type": "git",
"url": "https://github.com/liberty-mp/orpc"
},
"keywords": [
"orpc",
"rpc",
"socket.io",
"type-safe",
"typescript",
"AOC",
"governance",
"load-balancing"
],
"license": "MIT",
"scripts": {
"build": "tsup",
"type-check": "tsc -p src --noEmit"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"devDependencies": {
"prettier": "^2.8.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"dependencies": {
"colorette": "^2.0.19",
"nanoid": "^3.3.4",
"socket.io": "^4.5.4",
"socket.io-client": "^4.5.4"
}
}