-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.68 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
{
"name": "@huinet/network",
"version": "0.1.0",
"description": "Decentralized Agent-to-Agent (A2A) networking library with P2P communication",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"huinet": "./bin/huinet"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"bin",
"cli"
],
"scripts": {
"build": "tsc && node scripts/build.js",
"build:cli": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src cli --ext .ts",
"prepublishOnly": "npm run build && npm test",
"start": "node dist/cli/index.js",
"dev": "ts-node cli/index.ts",
"cli": "ts-node cli/index.ts"
},
"keywords": [
"p2p",
"networking",
"agent",
"a2a",
"decentralized",
"cli",
"huinet"
],
"author": "HuiNet Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/free-revalution/HuiNet-Network-Core.git"
},
"bugs": {
"url": "https://github.com/free-revalution/HuiNet-Network-Core/issues"
},
"homepage": "https://github.com/free-revalution/HuiNet-Network-Core#readme",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@types/ws": "^8.18.1",
"commander": "^11.1.0",
"multicast-dns": "^7.2.5",
"tweetnacl": "^1.0.3",
"ws": "^8.19.0"
}
}