-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.71 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
{
"name": "@agentruntimecontrolprotocol/node",
"version": "2.0.0",
"description": "Node.js HTTP server integration for the ARCP WebSocket transport. Wires the WS upgrade handshake onto an existing `http.Server` with Host-header DNS-rebinding protection.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/agentruntimecontrolprotocol/typescript-sdk.git",
"directory": "packages/middleware/node"
},
"homepage": "https://github.com/agentruntimecontrolprotocol/typescript-sdk/tree/main/packages/middleware/node#readme",
"bugs": {
"url": "https://github.com/agentruntimecontrolprotocol/typescript-sdk/issues"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "module",
"engines": {
"node": ">=22"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage --passWithNoTests"
},
"dependencies": {
"ws": "^8.20.1"
},
"peerDependencies": {
"@agentruntimecontrolprotocol/core": "workspace:^",
"@agentruntimecontrolprotocol/runtime": "workspace:^"
},
"devDependencies": {
"@agentruntimecontrolprotocol/core": "workspace:*",
"@agentruntimecontrolprotocol/runtime": "workspace:*",
"@types/node": "^26.1.1",
"@types/ws": "^8.5.12",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}