@misha_misha/agentwatch 0.0.1

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,9 @@
1
+ #!/usr/bin/env node
2
+ import {
3
+ claudeProjectsDir,
4
+ detectWorkspaceRoot
5
+ } from "./chunk-EMMMIDXY.js";
6
+ export {
7
+ claudeProjectsDir,
8
+ detectWorkspaceRoot
9
+ };
package/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "@misha_misha/agentwatch",
3
+ "version": "0.0.1",
4
+ "description": "Local-only observability for AI coding agents. See what Claude, Codex, Cursor, Gemini, and OpenClaw are touching on your machine — in one timeline.",
5
+ "type": "module",
6
+ "author": "Misha Nefedov",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/mishanefedov/agentwatch.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/mishanefedov/agentwatch/issues"
13
+ },
14
+ "homepage": "https://github.com/mishanefedov/agentwatch#readme",
15
+ "bin": {
16
+ "agentwatch": "bin/agentwatch.js"
17
+ },
18
+ "files": [
19
+ "bin",
20
+ "dist",
21
+ "README.md",
22
+ "LICENSE"
23
+ ],
24
+ "scripts": {
25
+ "build": "tsup",
26
+ "dev": "tsx src/index.tsx",
27
+ "start": "node bin/agentwatch.js",
28
+ "typecheck": "tsc --noEmit",
29
+ "test": "vitest run",
30
+ "prepublishOnly": "npm run typecheck && npm run build"
31
+ },
32
+ "publishConfig": {
33
+ "access": "public"
34
+ },
35
+ "keywords": [
36
+ "ai",
37
+ "agent",
38
+ "claude",
39
+ "claude-code",
40
+ "observability",
41
+ "cli",
42
+ "tui",
43
+ "local"
44
+ ],
45
+ "license": "MIT",
46
+ "dependencies": {
47
+ "chokidar": "^4.0.3",
48
+ "ink": "^5.1.0",
49
+ "react": "^18.3.1"
50
+ },
51
+ "devDependencies": {
52
+ "@types/node": "^22.10.2",
53
+ "@types/react": "^18.3.18",
54
+ "tsup": "^8.3.5",
55
+ "tsx": "^4.19.2",
56
+ "typescript": "^5.7.2",
57
+ "vitest": "^2.1.8"
58
+ },
59
+ "engines": {
60
+ "node": ">=20"
61
+ },
62
+ "os": [
63
+ "darwin",
64
+ "linux"
65
+ ]
66
+ }