-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.74 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@tenkicloud/composio-tools",
"version": "0.2.0",
"description": "Tenki sandbox tools for Composio agents — boot disposable Linux microVMs, run commands, snapshot, and terminate them through Composio custom toolkits.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"smoke": "tsx scripts/live-smoke.ts",
"agent": "tsx scripts/agent-test.ts",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"scripts/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\" \"scripts/**/*.ts\""
},
"keywords": [
"composio",
"tenki",
"sandbox",
"microvm",
"ai-agents",
"agent-tools",
"custom-toolkit"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/LuxorLabs/tenki-composio-tools.git"
},
"homepage": "https://github.com/LuxorLabs/tenki-composio-tools#readme",
"bugs": {
"url": "https://github.com/LuxorLabs/tenki-composio-tools/issues"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@composio/core": ">=0.13.0 <1"
},
"dependencies": {
"@tenkicloud/sandbox": "^0.5.4",
"zod": "^3.25.76"
},
"devDependencies": {
"@composio/core": "^0.13.0",
"@types/node": "^22.0.0",
"dotenv": "^16.4.0",
"openai": "^7.4.0",
"prettier": "^3.3.0",
"tsx": "^4.19.0",
"tsup": "^8.0.0",
"typescript": "^5.5.0",
"vitest": "^2.1.0"
}
}