-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.57 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
{
"name": "@agentruntimecontrolprotocol/client",
"version": "2.0.0",
"description": "Client implementation of the Agent Runtime Control Protocol (ARCP). Install alongside a transport from @agentruntimecontrolprotocol/core to talk to an @agentruntimecontrolprotocol/runtime server.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/agentruntimecontrolprotocol/typescript-sdk.git",
"directory": "packages/client"
},
"homepage": "https://github.com/agentruntimecontrolprotocol/typescript-sdk/tree/main/packages/client#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/core": "workspace:*",
"@effect/platform": "^0.96.2",
"effect": "^3.21.4"
},
"devDependencies": {
"@types/node": "^26.0.1",
"@vitest/coverage-v8": "^4.1.9",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}