-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.42 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.42 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
{
"name": "@commandlayer/agent-sdk",
"version": "1.2.0",
"description": "TypeScript SDK for signing and verifying CommandLayer agent receipts",
"license": "MIT",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.json && node scripts/copy-schemas.mjs",
"test": "node --test dist/test/receipt.test.js dist/test/trust.test.js",
"pretest": "npm run build",
"example:basic": "node dist/examples/basic-agent.js",
"example:langchain": "node dist/examples/langchain-agent.js",
"example:wrapped": "node dist/examples/wrapped-agent-demo.js",
"example:tool": "node dist/examples/openai-tool-wrapper.js",
"example:workflow": "node dist/examples/workflow-job-runner.js",
"example:a2a": "node dist/examples/agent-to-agent-verify.js",
"example:existing": "node dist/examples/existing-agent-integration.js",
"example:demo": "node dist/examples/full-demo.js"
},
"devDependencies": {
"@types/node": "^22.15.3",
"typescript": "^5.8.3"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"@commandlayer/runtime-core": "^1.2.0"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
}
}