-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.4 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
80
81
82
83
84
{
"name": "@agentruntimecontrolprotocol/sdk",
"version": "2.0.0",
"description": "Meta-package for the Agent Runtime Control Protocol (ARCP) TypeScript reference SDK. Re-exports @agentruntimecontrolprotocol/core, @agentruntimecontrolprotocol/client, and @agentruntimecontrolprotocol/runtime, and ships the `arcp` CLI. Install this if you want everything; install the individual packages for a smaller footprint.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/agentruntimecontrolprotocol/typescript-sdk.git",
"directory": "packages/sdk"
},
"homepage": "https://github.com/agentruntimecontrolprotocol/typescript-sdk/tree/main/packages/sdk#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"
},
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.js"
},
"./runtime": {
"types": "./dist/runtime.d.ts",
"import": "./dist/runtime.js"
},
"./transport": {
"types": "./dist/transport.d.ts",
"import": "./dist/transport.js"
},
"./messages": {
"types": "./dist/messages.d.ts",
"import": "./dist/messages.js"
},
"./errors": {
"types": "./dist/errors.d.ts",
"import": "./dist/errors.js"
}
},
"bin": {
"arcp": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"RFC-0001-v2.md",
"CONFORMANCE.md"
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@agentruntimecontrolprotocol/client": "workspace:*",
"@agentruntimecontrolprotocol/core": "workspace:*",
"@agentruntimecontrolprotocol/runtime": "workspace:*",
"@effect/platform": "^0.96.2",
"commander": "^15.0.0",
"effect": "^3.21.4"
},
"devDependencies": {
"@types/node": "^26.1.0",
"@vitest/coverage-v8": "^4.1.10",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
}
}