-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.66 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
{
"name": "@quolu/observer",
"version": "0.1.4",
"description": "Read-only AI parent monitoring with evidence-based advisories for Claude and Codex",
"license": "MIT",
"author": {
"name": "Quo / クオ at kitepon.dev",
"url": "https://kitepon.dev/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kitepon-rgb/Observer.git"
},
"bugs": {
"url": "https://github.com/kitepon-rgb/Observer/issues"
},
"homepage": "https://github.com/kitepon-rgb/Observer#readme",
"keywords": [
"ai",
"observability",
"codex",
"claude",
"throughline"
],
"type": "module",
"files": [
"AGENTS.md",
"CLAUDE.md",
"LICENSE",
"README.md",
"bin/",
"src/"
],
"bin": {
"observer": "bin/observer.mjs",
"observer-mcp": "bin/observer-mcp.mjs",
"observer-parent-stop-hook": "bin/observer-parent-stop-hook.mjs",
"observer-hook-config": "bin/observer-hook-config.mjs",
"observer-claude-characterization": "bin/observer-claude-characterization.mjs"
},
"engines": {
"node": ">=22.13"
},
"scripts": {
"test": "node scripts/run-tests.mjs",
"test:performance": "node test/performance-acceptance.mjs",
"test:throughline-integration": "node --test test/throughline-black-box.integration.mjs",
"syntax": "node scripts/check-syntax.mjs",
"check": "npm run syntax && git diff --check",
"test:package": "node scripts/verify-package-install.mjs",
"verify:release-commit": "node scripts/verify-release-commit.mjs",
"prepublishOnly": "npm run verify:release-commit && npm test && npm run check && npm run test:package"
},
"publishConfig": {
"access": "public"
}
}