-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.9 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.9 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": "agntcy-dir",
"version": "1.3.0",
"description": "Directory SDK",
"homepage": "https://github.com/agntcy/dir-sdk-javascript",
"bugs": {
"url": "https://github.com/agntcy/dir-sdk-javascript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agntcy/dir-sdk-javascript.git"
},
"license": "Apache-2.0",
"keywords": [
"sdk",
"client",
"directory",
"agntcy",
"typescript",
"javascript"
],
"type": "module",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"typings": "dist/agntcy-dir.d.ts",
"exports": {
".": {
"types": "./dist/agntcy-dir.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
}
},
"scripts": {
"build": "rollup -c && api-extractor run --local --verbose --diagnostics",
"clean": "rm -rf dist",
"pretest": "npm run build",
"test": "vitest run"
},
"packageManager": "npm@11.15.0",
"dependencies": {
"@buf/agntcy_dir.bufbuild_es": "2.9.0-20260520160646-410870f0d4c7.1",
"@bufbuild/protobuf": "^2.12.0",
"@connectrpc/connect": "^2.1.0",
"@connectrpc/connect-node": "^2.1.0",
"@grpc/grpc-js": "^1.14.4",
"spiffe": "^0.5.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.58.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@types/node": "^22.19.19",
"@types/uuid": "^10.0.0",
"rollup-plugin-typescript2": "^0.37.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"uuid": "^11.1.1",
"vitest": "^3.2.4",
"workerpool": "^10.0.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.60.4"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/agntcy-dir.d.ts",
"dist/index.mjs",
"dist/index.cjs",
"dist/index.mjs.map"
],
"directories": {
"test": "test"
},
"author": ""
}