-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.92 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@composio/cli",
"version": "0.0.0-development",
"description": "Composio CLI",
"main": "./dist/bin.mjs",
"private": true,
"bin": {
"composio": "./bin/composio.mjs"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ComposioHQ/composio.git",
"directory": "ts/packages/cli"
},
"files": [
"README.md",
"bin",
"dist"
],
"scripts": {
"clean": "git clean -xdf node_modules",
"cli": "bun run src/bin.ts",
"build:binary": "bun run ./scripts/build-binary.ts",
"build:companions": "bun run ./scripts/build-companion-modules.ts",
"build:binary:cross": "bun run ./scripts/build-binary-cross.ts",
"build:binary:all": "bun run ./scripts/build-all-binaries.ts",
"build:binary:package": "bun run ./scripts/package-binaries.ts",
"build:binary:checksums": "bun run ./scripts/generate-checksums.ts",
"build:skills": "tsx ./scripts/build-skills.ts",
"validate:skills": "tsx ./scripts/validate-skills.ts",
"validate:boundaries": "tsx ./scripts/validate-lint-boundaries.ts",
"install:binary": "bun run ./scripts/install-binary.ts ./dist/composio",
"table:metrics": "bun run ./scripts/optimize-metrics-table.ts",
"generate:toolkit-slugs": "bun run ./scripts/generate-toolkit-slugs.ts",
"mock": "bun run ./scripts/copy-mocks-from-cache.ts",
"prebuild": "pnpm run typecheck",
"build": "tsdown && bun run ./scripts/copy-local-tools-assets.ts ./dist",
"bin": "./dist/composio",
"test": "pnpm run validate:skills && pnpm run validate:boundaries && vitest run",
"prepublishOnly": "pnpm run build && pnpm run build:binary",
"typecheck:src": "tsc --noEmit -p ./tsconfig.src.json",
"typecheck:test": "tsc --noEmit -p ./tsconfig.test.json",
"typecheck": "pnpm run typecheck:src && pnpm run typecheck:test",
"record": "bun run ./scripts/record.ts"
},
"keywords": [
"composio",
"mcp",
"cli"
],
"author": "Alberto Schiabel <alberto.schiabel@gmail.com> (https://github.com/jkomyno)",
"license": "ISC",
"devDependencies": {
"@effect/cluster": "^0.60.2",
"@effect/experimental": "^0.61.1",
"@effect/language-service": "catalog:",
"@effect/platform": "catalog:",
"@effect/printer": "^0.51.0",
"@effect/printer-ansi": "^0.51.0",
"@effect/rpc": "^0.76.2",
"@effect/sql": "^0.52.1",
"@effect/typeclass": "^0.41.0",
"@effect/vitest": "catalog:",
"@effect/workflow": "^0.19.1",
"@types/bun": "catalog:",
"@types/semver": "^7.8.0",
"tar": "^7.5.22",
"tempy": "^3.2.0",
"tsdown": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:ts6",
"vitest": "catalog:"
},
"dependencies": {
"@agentclientprotocol/sdk": "^1.3.0",
"@clack/core": "catalog:",
"@clack/prompts": "catalog:",
"@composio/cli-keyring": "workspace:*",
"@composio/cli-local-tools": "workspace:*",
"@composio/client": "catalog:",
"@composio/core": "workspace:*",
"@composio/json-schema-to-effect-schema": "workspace:*",
"@composio/json-schema-to-zod": "workspace:*",
"@composio/ts-builders": "workspace:*",
"@effect/cli": "catalog:",
"@effect/platform-bun": "catalog:",
"@effect/platform-node-shared": "catalog:",
"@modelcontextprotocol/sdk": "catalog:",
"@zed-industries/claude-code-acp": "^0.16.2",
"@zed-industries/codex-acp": "^0.16.0",
"effect": "catalog:",
"extract-zip": "^2.0.1",
"indent-string": "^5.0.0",
"js-tiktoken": "^1.0.21",
"json5": "^2.2.3",
"open": "^11.0.1",
"openapi-typescript": "^7.13.0",
"picocolors": "catalog:",
"pusher-js": "^8.6.0",
"semver": "^7.8.5",
"source-map-js": "^1.2.1",
"superjson": "^2.2.6",
"ts-morph": "^28.0.0",
"zod": "catalog:"
},
"gitHead": "4fae6e54d5c150fba955cc5fa314281da5a1e064",
"module": "./dist/bin.mjs",
"types": "./dist/bin.d.mts",
"exports": {
".": "./dist/bin.mjs",
"./package.json": "./package.json"
}
}