@withoperon/cli 0.2.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.
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@withoperon/cli",
3
+ "version": "0.2.0",
4
+ "description": "Operon — team agent memory CLI. Mines what your team is already doing in Claude Code, Codex, and Cursor.",
5
+ "license": "MIT",
6
+ "homepage": "https://withoperon.com",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/Try-Operon/operon.git",
10
+ "directory": "apps/cli"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/Try-Operon/operon/issues"
14
+ },
15
+ "keywords": [
16
+ "operon",
17
+ "ai",
18
+ "agents",
19
+ "claude-code",
20
+ "codex",
21
+ "cursor",
22
+ "workflow-mining",
23
+ "mcp",
24
+ "skill"
25
+ ],
26
+ "type": "module",
27
+ "bin": {
28
+ "operon": "dist/cli.js"
29
+ },
30
+ "files": [
31
+ "dist/",
32
+ "README.md",
33
+ "LICENSE"
34
+ ],
35
+ "engines": {
36
+ "node": ">=22"
37
+ },
38
+ "publishConfig": {
39
+ "access": "public",
40
+ "provenance": true
41
+ },
42
+ "scripts": {
43
+ "build": "tsup",
44
+ "dev": "tsup --watch",
45
+ "typecheck": "tsc --noEmit",
46
+ "lint": "eslint src",
47
+ "test": "pnpm build && vitest run",
48
+ "test:network-zero": "pnpm build && vitest run test/network-zero.test.ts",
49
+ "size": "node tools/check-bundle-size.mjs"
50
+ },
51
+ "dependencies": {
52
+ "@modelcontextprotocol/sdk": "^1.29.0",
53
+ "chalk": "^5.3.0",
54
+ "commander": "^12.0.0",
55
+ "zod": "^3.23.0"
56
+ },
57
+ "devDependencies": {
58
+ "@operon/bundle": "workspace:*",
59
+ "@operon/eslint-config": "workspace:*",
60
+ "@operon/mcp": "workspace:*",
61
+ "@operon/mining": "workspace:*",
62
+ "@types/node": "^22.0.0",
63
+ "tsup": "^8.0.0",
64
+ "typescript": "^5.6.0",
65
+ "vitest": "^2.0.0"
66
+ }
67
+ }