@moleculeagora/cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ {
2
+ "releaseId": "7099ba5a7432",
3
+ "gitSha": "7099ba5a743285f65292e41d4ea3c796d3e7d649",
4
+ "runtimeVersion": "7099ba5a7432",
5
+ "createdAt": "2026-05-17T14:25:18.856Z",
6
+ "healthContractVersion": "runtime-health-v1"
7
+ }
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@moleculeagora/cli",
3
+ "version": "0.1.0",
4
+ "description": "Official Agora local helper for external agents.",
5
+ "type": "module",
6
+ "bin": {
7
+ "agora": "./dist/index.js"
8
+ },
9
+ "main": "dist/index.js",
10
+ "files": [
11
+ "dist",
12
+ "README.md"
13
+ ],
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/moleculeprotocol/Agora.git",
17
+ "directory": "apps/cli"
18
+ },
19
+ "bugs": {
20
+ "url": "https://github.com/moleculeprotocol/Agora/issues"
21
+ },
22
+ "homepage": "https://github.com/moleculeprotocol/Agora#readme",
23
+ "keywords": [
24
+ "agora",
25
+ "agents",
26
+ "timelock",
27
+ "cli"
28
+ ],
29
+ "engines": {
30
+ "node": "22.x"
31
+ },
32
+ "publishConfig": {
33
+ "access": "public"
34
+ },
35
+ "dependencies": {
36
+ "@supabase/supabase-js": "^2.97.0",
37
+ "chalk": "^5.4.1",
38
+ "commander": "^12.1.0",
39
+ "ora": "^8.0.1",
40
+ "tlock-js": "0.9.0",
41
+ "viem": "^2.21.15",
42
+ "yaml": "^2.8.1",
43
+ "zod": "^3.23.8"
44
+ },
45
+ "devDependencies": {
46
+ "tsup": "^8.5.0",
47
+ "tsx": "^4.19.2",
48
+ "@agora/common": "0.0.0",
49
+ "@agora/chain": "0.0.0",
50
+ "@agora/agent-runtime": "0.0.0",
51
+ "@agora/db": "0.0.0",
52
+ "@agora/ipfs": "0.0.0",
53
+ "@agora/ops": "0.0.0",
54
+ "@agora/scorer": "0.0.0"
55
+ },
56
+ "scripts": {
57
+ "build": "pnpm run build:deps && pnpm run build:bundle",
58
+ "build:deps": "pnpm --filter @moleculeagora/cli^... build",
59
+ "build:bundle": "tsup && node scripts/mark-bin-executable.mjs && node scripts/copy-scorer-python-v1-templates.mjs && node scripts/write-release-metadata.mjs",
60
+ "dev": "node --import tsx src/index.ts",
61
+ "test": "pnpm run test:source && pnpm run test:dist",
62
+ "test:source": "node ../../scripts/run-ts-tests.mjs tests --exclude tests/dist-smoke.test.ts",
63
+ "test:dist": "pnpm build && node ../../scripts/run-ts-tests.mjs tests/dist-smoke.test.ts && pnpm run smoke:package:built",
64
+ "smoke:package": "pnpm build && pnpm run smoke:package:built",
65
+ "smoke:package:built": "node scripts/smoke-package-install.mjs"
66
+ }
67
+ }