forked from ydb-platform/ydb-nodejs-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 KB
/
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
47
48
49
50
51
52
53
{
"name": "ydb-sdk",
"version": "1.8.1",
"description": "Node.js bindings for working with YDB API over gRPC",
"main": "build/index.js",
"files": [
"build/**",
"proto/**"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:bundle": "pbjs -t static-module -w commonjs -p . `ls kikimr/public/api/grpc/*.proto` yandex/cloud/iam/v1/iam_token_service.proto > proto/bundle.js && pbts -o proto/bundle.d.ts proto/bundle.js",
"build:lib": "tsc",
"build:examples": "cd examples && npm run build",
"basic-example-v1": "cd examples && npm run basic-v1",
"url-shortener-example": "cd examples && npm run url-shortener",
"start": "npm run basic-example",
"clean": "rm -rf build",
"prepublish": "npm run clean && npm run build:lib"
},
"keywords": [
"ydb",
"sdk",
"grpc"
],
"repository": {
"type": "git",
"url": "https://github.com/yandex-cloud/ydb-nodejs-sdk.git"
},
"author": "Timur Sufiev",
"license": "Apache",
"dependencies": {
"@grpc/proto-loader": "^0.5.1",
"grpc": "^1.24.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"long": "^4.0.0",
"luxon": "^1.21.2",
"pino": "^6.3.0",
"protobufjs": "^6.8.8",
"reflect-metadata": "^0.1.13",
"yandex-cloud": "^1.4.2"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.3.5",
"@types/lodash": "^4.14.144",
"@types/luxon": "^1.21.0",
"@types/node": "10.17.20",
"@types/pino": "^6.0.0",
"pino-pretty": "^3.6.1",
"typescript": "^3.9.3"
}
}