-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.24 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.24 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
{
"name": "@ydbjs/error",
"version": "6.0.5",
"description": "Error utilities for YDB: error classification, rich messages, and TypeScript support for robust error handling in YDB applications.",
"keywords": [
"database",
"error",
"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/error"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"type": "module",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsc",
"test": "vitest --run",
"attw": "attw --pack --profile esm-only"
},
"dependencies": {
"@bufbuild/protobuf": "2.10.1",
"@ydbjs/api": "^6.0.0"
},
"engines": {
"node": ">=20.19.0",
"npm": ">=10"
},
"engineStrict": true
}