-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.1 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.1 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
{
"name": "@commandlayer/agent-sdk",
"version": "1.0.1",
"description": "Minimal TypeScript SDK for signing CommandLayer agent receipts",
"license": "MIT",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src",
"dist/examples",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "node --test dist/test/receipt.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"
}
}