-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.72 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.72 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
79
{
"name": "pilotprotocol",
"version": "1.9.1",
"description": "Node.js SDK for Pilot Protocol — the network stack for AI agents",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"pilotctl": "bin-stubs/pilotctl.js",
"pilot-daemon": "bin-stubs/pilot-daemon.js",
"pilot-gateway": "bin-stubs/pilot-gateway.js",
"pilot-updater": "bin-stubs/pilot-updater.js"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"clean": "rm -rf dist/",
"prepublishOnly": "npm run build"
},
"keywords": [
"pilot-protocol",
"networking",
"p2p",
"agent",
"ai",
"protocol",
"overlay",
"udp",
"encryption",
"ffi"
],
"license": "AGPL-3.0-or-later",
"author": {
"name": "Alexandru Godoroja",
"email": "alex@pilotprotocol.network"
},
"contributors": [
{
"name": "Teodor Calin",
"email": "teodor@pilotprotocol.network"
}
],
"repository": {
"type": "git",
"url": "https://github.com/TeoSlayer/pilotprotocol",
"directory": "sdk/node"
},
"homepage": "https://pilotprotocol.network",
"bugs": {
"url": "https://github.com/TeoSlayer/pilotprotocol/issues"
},
"dependencies": {
"koffi": "^2.9.0"
},
"optionalDependencies": {
"pilotprotocol-linux-x64": "0.1.1",
"pilotprotocol-linux-arm64": "0.1.1",
"pilotprotocol-darwin-x64": "0.1.1",
"pilotprotocol-darwin-arm64": "0.1.1"
},
"devDependencies": {
"@types/node": "^25.5.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=20"
},
"files": [
"dist/",
"bin-stubs/"
]
}