-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 990 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 990 Bytes
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
{
"name": "@danscan/zod-jsonrpc",
"version": "3.3.0",
"repository": "https://github.com/danscan/zod-jsonrpc",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map",
"!dist/**/*.test.*"
],
"dependencies": {
"@standard-schema/spec": "^1.0.0",
"zod": "^4.0.5"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"bugs": "https://github.com/danscan/zod-jsonrpc/issues",
"description": "Create JSON-RPC 2.0-compliant clients and servers that use Zod to validate requests and responses.",
"homepage": "https://github.com/danscan/zod-jsonrpc",
"keywords": [
"json-rpc",
"jsonrpc",
"jsonrpc 2.0",
"jsonrpc2",
"server",
"client",
"batch",
"http",
"websocket",
"ipc",
"zod"
],
"scripts": {
"build": "bun run tsc",
"prepare": "bun run build"
},
"type": "module",
"types": "dist/index.d.ts"
}