-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.03 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.03 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@ydbjs/api",
"version": "6.0.6",
"description": "TypeScript gRPC service definitions and protobuf types for all YDB APIs. Enables strongly-typed client generation and low-level protocol access.",
"keywords": [
"api",
"database",
"grpc",
"protobuf",
"typescript",
"ydb"
],
"homepage": "https://github.com/ydb-platform/ydb-js-sdk#readme",
"bugs": {
"url": "https://github.com/ydb-platform/ydb-js-sdk/issues"
},
"license": "Apache-2.0",
"author": "YDB Team <team@ydb.tech> (https://ydb.tech)",
"contributors": [
"Vladislav Polyakov <me@polrk.com>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ydb-platform/ydb-js-sdk.git",
"directory": "packages/api"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"type": "module",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./auth": "./dist/auth.js",
"./cms": "./dist/cms.js",
"./coordination": "./dist/coordination.js",
"./discovery": "./dist/discovery.js",
"./export": "./dist/export.js",
"./federation-discovery": "./dist/federation_discovery.js",
"./import": "./dist/import.js",
"./monitoring": "./dist/monitoring.js",
"./operation": "./dist/operation.js",
"./query": "./dist/query.js",
"./rate-limiter": "./dist/rate_limiter.js",
"./scheme": "./dist/scheme.js",
"./scripting": "./dist/scripting.js",
"./table": "./dist/table.js",
"./topic": "./dist/topic.js",
"./value": "./dist/value.js"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"generate": "buf generate --template buf.gen.yaml && buf generate --template buf.gen.grpc.yaml",
"clean": "rm -rf dist",
"build": "tsc",
"attw": "attw --pack --profile esm-only"
},
"dependencies": {
"@bufbuild/protobuf": "2.10.1",
"@grpc/grpc-js": "^1.14.0",
"nice-grpc": "^2.1.13"
},
"devDependencies": {
"@bufbuild/buf": "^1.61.0",
"@bufbuild/protoc-gen-es": "^2.10.1"
},
"engines": {
"node": ">=20.19.0",
"npm": ">=10"
},
"engineStrict": true
}