opencode-termux-notify 0.1.0 → 0.1.1-dev.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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +7 -6
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- export { default } from "./dist/v1.js"
1
+ export { default } from "./dist/index.js"
2
2
  export { DEFAULTS, PRIORITY_BY_KIND, SOUND_FILES, VIBRATE_PATTERNS } from "./dist/constants.js"
3
3
  export { default as V1 } from "./dist/v1.js"
4
4
  export { default as V2 } from "./dist/index.js"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "opencode-termux-notify",
4
- "version": "0.1.0",
4
+ "version": "0.1.1-dev.0",
5
5
  "description": "Termux-native notifications for OpenCode — 6 attention sounds (default/question/permission/error/done/subagent_done) via termux-notification + termux-media-player, with cross-instance deduplication.",
6
6
  "type": "module",
7
7
  "keywords": [
@@ -30,8 +30,8 @@
30
30
  },
31
31
  "exports": {
32
32
  ".": {
33
- "import": "./dist/v1.js",
34
- "types": "./dist/v1.d.ts"
33
+ "import": "./dist/index.js",
34
+ "types": "./dist/index.d.ts"
35
35
  },
36
36
  "./v1": {
37
37
  "import": "./dist/v1.js",
@@ -43,8 +43,8 @@
43
43
  },
44
44
  "./package.json": "./package.json"
45
45
  },
46
- "main": "./dist/v1.js",
47
- "types": "./dist/v1.d.ts",
46
+ "main": "./dist/index.js",
47
+ "types": "./dist/index.d.ts",
48
48
  "files": [
49
49
  "dist/",
50
50
  "src/",
@@ -58,7 +58,8 @@
58
58
  "node": ">=20"
59
59
  },
60
60
  "publishConfig": {
61
- "access": "public"
61
+ "access": "public",
62
+ "tag": "dev"
62
63
  },
63
64
  "dependencies": {
64
65
  "@opencode-ai/plugin": "^1.18.27"