-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.15 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
{
"name": "opencode-notif",
"version": "1.1.0",
"description": "OpenCode plugin for desktop notifications",
"main": "src/notif.ts",
"type": "module",
"scripts": {
"build": "tsx scripts/build.ts",
"deploy": "tsx scripts/deploy.ts",
"deploy:build": "tsx scripts/deploy.ts --build-only",
"deploy:install": "tsx scripts/deploy.ts --install-only",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"sync:opencode": "tsx scripts/sync-opencode.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"opencode",
"plugin",
"notifications",
"desktop"
],
"author": "trethore",
"license": "MIT",
"dependencies": {
"@opencode-ai/plugin": "^1.4.3",
"node-notifier": "^10.0.1",
"play-sound": "^1.1.6"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "25.6.0",
"esbuild": "0.28.0",
"eslint": "10.2.0",
"eslint-plugin-unicorn": "64.0.0",
"prettier": "3.8.2",
"tsx": "4.21.0",
"typescript": "6.0.2",
"typescript-eslint": "8.58.1"
},
"overrides": {
"brace-expansion": "5.0.5",
"flatted": "^3.4.2"
}
}