-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 893 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 893 Bytes
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
{
"name": "@spencer-kit/agent-notify",
"version": "0.2.0",
"description": "CLI notifications for Codex and Claude Code task completion and attention events",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/spencerkit/agent-notify#readme",
"bugs": {
"url": "https://github.com/spencerkit/agent-notify/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spencerkit/agent-notify.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"assets",
"README.md"
],
"bin": {
"agent-notify": "dist/cli.js"
},
"scripts": {
"build": "tsup src/cli.ts --format esm --out-dir dist --clean",
"prepack": "npm run build",
"test": "vitest run"
},
"devDependencies": {
"@types/node": "^24.5.2",
"tsup": "^8.5.0",
"typescript": "^5.8.2",
"vitest": "^3.1.1"
}
}