-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.29 KB
/
package.json
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
{
"name": "autonomous-software-agent",
"version": "1.0.0",
"description": "autonomous-software-agent",
"main": "index.js",
"type": "module",
"scripts": {
"singleAgent": "node ./src/index.js --agentname=SingleAgent",
"doubleAgentA": "node ./src/index.js --agentname=DoubleAgentA",
"doubleAgentB": "node ./src/index.js --agentname=DoubleAgentB",
"update:client": "npm install @unitn-asa/deliveroo-js-client@latest",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TarasRashkevych99/autonomous-software-agent.git"
},
"keywords": [
"autonomous-system"
],
"author": "Taras Rashkevych, Alessandro Rizzetto",
"license": "MIT",
"bugs": {
"url": "https://github.com/TarasRashkevych99/autonomous-software-agent/issues"
},
"homepage": "https://github.com/TarasRashkevych99/autonomous-software-agent#readme",
"dependencies": {
"@unitn-asa/deliveroo-js-client": "^0.0.34",
"@unitn-asa/pddl-client": "^0.0.34",
"dotenv": "^16.0.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-google": "^0.14.0",
"prettier": "2.8.7"
}
}