-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
29 lines (29 loc) · 808 Bytes
/
deno.json
File metadata and controls
29 lines (29 loc) · 808 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
{
"name": "@openstatus/sdk-node",
"version": "0.1.5",
"description": "SDK for openstatus",
"license": "MIT",
"exports": {
".": "./src/mod.ts"
},
"publish": {
"include": ["src/**/*.ts", "README.md", "LICENSE"],
"exclude": ["**/*_test.ts", "**/*.test.ts"]
},
"tasks": {
"dev": "deno run --env-file --allow-env --allow-net --watch example.ts",
"generate": "buf generate buf.build/openstatus/api",
"check": "deno check src/mod.ts",
"lint": "deno lint",
"fmt": "deno fmt"
},
"imports": {
"@bufbuild/protobuf": "npm:@bufbuild/protobuf@^2.11.0",
"@connectrpc/connect": "npm:@connectrpc/connect@^2.1.1",
"@connectrpc/connect-node": "npm:@connectrpc/connect-node@^2.1.1"
},
"compilerOptions": {
"strict": true,
"noImplicitAny": true
}
}