-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.92 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.92 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
{
"name": "processcube-robot-agent",
"version": "0.0.1",
"description": "A Agent, that connects to the ProcessCube and can start RPA-Agents.",
"scripts": {
"python": "source venv/bin/activate && CONFIG_FILE=`pwd`/config.dev.json PYTHONPATH=`pwd` python",
"processcube_robot_agent": "source venv/bin/activate && CONFIG_FILE=`pwd`/config.dev.json PYTHONPATH=`pwd` python -m processcube_robot_agent serve",
"stop": "pkill -f 'processcube_robot_agent serve' || true",
"stop:force": "pkill -9 -f 'processcube_robot_agent serve' || true",
"__prepare": "rm robots/installed/rcc/readexcel.zip && rm -rf robots/src/rcc/readexcel",
"processcube_robot_agent_win": "sh start_on_windows.sh",
"run": "source venv/bin/activate && CONFIG_FILE=`pwd`/config.dev.json PYTHONPATH=`pwd` python -m processcube_robot_agent serve",
"push_sample": "cp -R robots/backup/readexcel robots/src/rcc/",
"install_studio_extension": "npm install && cd studio_extension && npm install && npm run build && cd .. && tar cfvz robot-agent-plugin.tgz studio_extension && ./node_modules/.bin/pc install-extension --type studio -y robot-agent-plugin.tgz",
"copy_release_to_beta": "cp -R ~/.processcube/studio/extensions/processcube.robot.extension ~/.processcube/studio-insiders/extensions/processcube.robot.extension"
},
"private": true,
"devDependencies": {
"@process-engine/ci_tools": "3.3.4"
},
"dependencies": {
"@5minds/processcube_cli": "^2.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atlas-engine-contrib/processcube-robot-agent.git"
},
"keywords": [
"workflow",
"rpa",
"processcube",
"bpmn",
"agent"
],
"author": "customer-solutions@5minds.de",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/atlas-engine-contrib/processcube-robot-agent/issues"
},
"homepage": "https://github.com/atlas-engine-contrib/processcube-robot-agent#readme"
}