-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.59 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
{
"name": "@hexaeight/sdk",
"version": "0.1.0-preview2",
"description": "HexaEight identity and DDE encryption SDK for Node.js. Secure agent-to-agent messaging, key derivation, and encrypted JWT — powered by the HexaEight platform.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"hexaeight-activate": "bin/activate.js",
"hexaeight-renew": "bin/renew.js",
"hexaeight-verify-env": "bin/verify-env.js"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"copy-dlls": "node scripts/copy-dlls.js",
"postinstall": "node scripts/postinstall.js"
},
"files": [
"bin/",
"dist/",
"native/",
"scripts/postinstall.js",
"README.md"
],
"keywords": [
"hexaeight",
"dde",
"identity",
"encryption",
"mcp",
"agent",
"coreclr"
],
"author": {
"name": "HexaEight",
"url": "https://hexaeight.com"
},
"license": "Apache-2.0",
"homepage": "https://hexaeight.com",
"repository": {
"type": "git",
"url": "git+https://github.com/HexaEightTeam/hexaeight-sdk-node.git"
},
"bugs": {
"url": "https://github.com/HexaEightTeam/hexaeight-sdk-node/issues",
"email": "support@hexaeight.com"
},
"dependencies": {
"node-api-dotnet": "^0.7.0",
"socket.io-client": "^2.5.0"
},
"devDependencies": {
"typescript": "^5.4.0",
"@types/node": "^20.0.0",
"@types/socket.io-client": "^1.4.36"
},
"engines": {
"node": ">=18.0.0"
}
}