forked from superagent-ai/grok-cli
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 583 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 583 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
{
"name": "@involvex/super-agent-plugin-notify",
"version": "1.0.0",
"description": "Desktop notification plugin for Super Agent CLI",
"keywords": [
"super-agent",
"plugin",
"notifications",
"desktop"
],
"license": "MIT",
"author": "InvolveX",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"dev": "tsc --watch"
},
"devDependencies": {
"@types/node": "^25.3.3",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@involvex/super-agent-cli": ">=0.0.58"
}
}