-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.89 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
{
"name": "@agentruntimecontrolprotocol/fastify",
"version": "2.0.0",
"description": "Fastify helpers for the Agent Runtime Control Protocol (ARCP). Registers @fastify/websocket and attaches the ARCP upgrade handler at a configurable path.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/agentruntimecontrolprotocol/typescript-sdk.git",
"directory": "packages/middleware/fastify"
},
"homepage": "https://github.com/agentruntimecontrolprotocol/typescript-sdk/tree/main/packages/middleware/fastify#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": {
"@agentruntimecontrolprotocol/node": "workspace:*"
},
"peerDependencies": {
"@agentruntimecontrolprotocol/core": "workspace:^",
"@agentruntimecontrolprotocol/runtime": "workspace:^",
"@fastify/websocket": "^11.0.0",
"fastify": "^4.28.0 || ^5.0.0"
},
"devDependencies": {
"@agentruntimecontrolprotocol/core": "workspace:*",
"@agentruntimecontrolprotocol/runtime": "workspace:*",
"@fastify/websocket": "^11.2.0",
"@types/node": "^26.1.0",
"@types/ws": "^8.5.12",
"fastify": "^5.10.0",
"typescript": "^6.0.3",
"vitest": "^4.1.10",
"ws": "^8.20.1"
}
}