-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 928 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 928 Bytes
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
{
"name": "salesforce-agentforce-a2a-wrapper",
"version": "1.0.0",
"main": "src/index.js",
"type": "module",
"scripts": {
"dev": "node --env-file=./src/.env --watch src/index.ts",
"start": "node src/index.ts"
},
"keywords": [
"agentforce",
"salesforce",
"a2a-protocol",
"a2a",
"heroku",
"AppLink"
],
"author": "Matija Vrzan",
"license": "ISC",
"description": "An example implementation of a financial AI Agent built with Agentforce and made accessible through the A2A protocol. The Heroku backend provides A2A protocol support, and the agent uses Heroku AppLink to perform API invocations.",
"dependencies": {
"@a2a-js/sdk": "^0.3.9",
"@heroku/applink": "^1.0.0",
"body-parser": "^2.2.1",
"cors": "^2.8.5",
"express": "^5.2.1"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.5.0"
}
}