@preziosiraffaele/agent-watch 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/LICENSE +21 -0
- package/bin/agent-watchd +2 -0
- package/bin/aw +5 -0
- package/dist/agent-watchd.js +603 -0
- package/dist/aw.js +780 -0
- package/package.json +43 -0
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@preziosiraffaele/agent-watch",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"description": "Local observability layer for terminal-based AI coding agents.",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"publishConfig": {
|
|
9
|
+
"access": "public"
|
|
10
|
+
},
|
|
11
|
+
"workspaces": [
|
|
12
|
+
"packages/*"
|
|
13
|
+
],
|
|
14
|
+
"bin": {
|
|
15
|
+
"aw": "./bin/aw",
|
|
16
|
+
"agent-watchd": "./bin/agent-watchd"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "bun build ./packages/aw/src/index.ts --outfile ./dist/aw.js --target bun && bun build ./packages/agent-watchd/src/index.ts --outfile ./dist/agent-watchd.js --target bun",
|
|
20
|
+
"prepare": "bun run build",
|
|
21
|
+
"test": "bun test",
|
|
22
|
+
"lint": "eslint .",
|
|
23
|
+
"format": "prettier --write .",
|
|
24
|
+
"format:check": "prettier --check .",
|
|
25
|
+
"typecheck": "tsc --noEmit",
|
|
26
|
+
"check": "bun run lint && bun run format:check && bun run typecheck && bun test"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"bin",
|
|
30
|
+
"dist"
|
|
31
|
+
],
|
|
32
|
+
"engines": {
|
|
33
|
+
"bun": ">=1.1.0"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@types/bun": "^1.1.0",
|
|
37
|
+
"eslint": "^9.26.0",
|
|
38
|
+
"eslint-config-prettier": "^10.1.8",
|
|
39
|
+
"prettier": "^3.8.3",
|
|
40
|
+
"typescript": "^5.6.0",
|
|
41
|
+
"typescript-eslint": "^8.20.0"
|
|
42
|
+
}
|
|
43
|
+
}
|