Skip to content

Commit 1db217f

Browse files
committed
init composio with functions, not integrations
1 parent 1b94e39 commit 1db217f

31 files changed

+1120
-166
lines changed

composio/package.json

+15-14
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@
33
"version": "1.0.0",
44
"description": "Basic Gemini example",
55
"scripts": {
6-
"start": "ts-node src/services.ts",
7-
"start.watch": "nodemon src/services.ts",
8-
"dev": "pnpm start.watch",
6+
"dev": "tsx watch --include src src/services.ts",
97
"build": "tsc --build",
8+
"schedule-workflow": "tsx scheduleWorkflow.ts",
109
"clean": "rm -rf node_modules",
11-
"schedule": "ts-node ./scheduleWorkflow.ts",
12-
"restack-up": "node restack_up.mjs"
10+
"restack-engine": "docker run -d --pull always --name restack -p 5233:5233 -p 6233:6233 -p 7233:7233 ghcr.io/restackio/restack:main",
11+
"restack-up": "tsx restackUp.mjs"
1312
},
1413
"nodemonConfig": {
1514
"execMap": {
@@ -21,16 +20,18 @@
2120
]
2221
},
2322
"dependencies": {
24-
"@restackio/ai": "^0.0.85",
25-
"@restackio/integrations-composio": "^0.0.6",
26-
"@temporalio/workflow": "^1.11.2",
27-
"dotenv": "^16.4.5"
23+
"@restackio/ai": "0.0.86",
24+
"@temporalio/workflow": "1.11.2",
25+
"dotenv": "16.4.5",
26+
"composio-core": "0.2.5",
27+
"install": "0.13.0"
2828
},
2929
"devDependencies": {
30-
"@restackio/cloud": "^1.0.19",
31-
"@types/node": "^20.16.9",
32-
"nodemon": "^2.0.22",
33-
"ts-node": "^10.9.2",
34-
"typescript": "^5.6.3"
30+
"@restackio/cloud": "1.0.19",
31+
"@types/node": "20.16.9",
32+
"nodemon": "2.0.22",
33+
"ts-node": "10.9.2",
34+
"tsx": "4.19.2",
35+
"typescript": "5.6.3"
3536
}
3637
}

0 commit comments

Comments
 (0)