omnish 2.2.1 → 2.2.3
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.
- package/CHANGELOG.md +21 -0
- package/contrib/install-omnish.sh +0 -0
- package/dist/downloads/omnish-claude/install.sh +0 -0
- package/dist/downloads/omnish-claude/uninstall.sh +0 -0
- package/dist/downloads/omnish-claude.tar.gz +0 -0
- package/dist/downloads/omnish-cursor/install.sh +0 -0
- package/dist/downloads/omnish-cursor/uninstall.sh +0 -0
- package/dist/downloads/omnish-cursor.tar.gz +0 -0
- package/dist/index.js +355 -354
- package/dist/omnish-claude/hooks/omnish-notify.sh +0 -0
- package/dist/omnish-claude/install.sh +0 -0
- package/dist/omnish-claude/scripts/doctor.sh +0 -0
- package/dist/omnish-claude/uninstall.sh +0 -0
- package/dist/omnish-cursor/hooks/omnish-notify.sh +0 -0
- package/dist/omnish-cursor/hooks/omnish-session-start.sh +0 -0
- package/dist/omnish-cursor/install.sh +0 -0
- package/dist/omnish-cursor/scripts/doctor.sh +0 -0
- package/dist/omnish-cursor/uninstall.sh +0 -0
- package/package.json +32 -22
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnish",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.3",
|
|
4
4
|
"description": "omnish — allowlisted inbox → your real shell (WhatsApp, Telegram, Discord, Slack, and 20+ channels). No AI.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -45,6 +45,28 @@
|
|
|
45
45
|
"bin": {
|
|
46
46
|
"omnish": "dist/index.js"
|
|
47
47
|
},
|
|
48
|
+
"scripts": {
|
|
49
|
+
"reinstall": "rm -rf node_modules && pnpm install",
|
|
50
|
+
"preinstall": "node scripts/check-node-version.cjs",
|
|
51
|
+
"postinstall": "node scripts/check-baileys-dep.mjs && node scripts/check-native-modules.mjs && node scripts/fix-node-pty-perms.mjs",
|
|
52
|
+
"prepack": "npm run build",
|
|
53
|
+
"build": "node scripts/build-bundle.mjs",
|
|
54
|
+
"build:doc-index": "node scripts/build-doc-index.mjs",
|
|
55
|
+
"typecheck": "tsc --noEmit",
|
|
56
|
+
"pretypecheck": "node scripts/build-doc-index.mjs",
|
|
57
|
+
"pretest": "node scripts/build-doc-index.mjs",
|
|
58
|
+
"format": "prettier --write .",
|
|
59
|
+
"format:check": "prettier --check .",
|
|
60
|
+
"test": "tsx --test 'src/**/*.test.ts'",
|
|
61
|
+
"arch:check": "depcruise src --config .dependency-cruiser.cjs",
|
|
62
|
+
"channel:parity": "tsx scripts/channel-parity.mjs",
|
|
63
|
+
"omnish": "tsx src/index.ts",
|
|
64
|
+
"link": "tsx src/index.ts link",
|
|
65
|
+
"run": "tsx src/index.ts run",
|
|
66
|
+
"local": "omnish stop || true; node scripts/build-bundle.mjs && npm link && omnish start",
|
|
67
|
+
"logout": "tsx src/index.ts logout"
|
|
68
|
+
},
|
|
69
|
+
"packageManager": "pnpm@11.9.0+sha512.bd682d5d03fe525ef7c9fd6780c6884d1e756ac4c9c9fe00c538782824310dcf90e3ddc4f53835f06dfaebd5085e41855e0bcbb3b60de2ac5bbab89e5036f03b",
|
|
48
70
|
"engines": {
|
|
49
71
|
"node": ">=22.13"
|
|
50
72
|
},
|
|
@@ -75,6 +97,14 @@
|
|
|
75
97
|
"tsx": "^4.19.2",
|
|
76
98
|
"typescript": "^5.7.2"
|
|
77
99
|
},
|
|
100
|
+
"pnpm": {
|
|
101
|
+
"onlyBuiltDependencies": [
|
|
102
|
+
"@parcel/watcher",
|
|
103
|
+
"better-sqlite3",
|
|
104
|
+
"esbuild",
|
|
105
|
+
"node-pty"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
78
108
|
"allowScripts": {
|
|
79
109
|
"@parcel/watcher": true,
|
|
80
110
|
"@whiskeysockets/baileys": true,
|
|
@@ -82,25 +112,5 @@
|
|
|
82
112
|
"node-pty": true,
|
|
83
113
|
"sharp": true,
|
|
84
114
|
"protobufjs": true
|
|
85
|
-
},
|
|
86
|
-
"scripts": {
|
|
87
|
-
"reinstall": "rm -rf node_modules && pnpm install",
|
|
88
|
-
"preinstall": "node scripts/check-node-version.cjs",
|
|
89
|
-
"postinstall": "node scripts/check-baileys-dep.mjs && node scripts/check-native-modules.mjs && node scripts/fix-node-pty-perms.mjs",
|
|
90
|
-
"build": "node scripts/build-bundle.mjs",
|
|
91
|
-
"build:doc-index": "node scripts/build-doc-index.mjs",
|
|
92
|
-
"typecheck": "tsc --noEmit",
|
|
93
|
-
"pretypecheck": "node scripts/build-doc-index.mjs",
|
|
94
|
-
"pretest": "node scripts/build-doc-index.mjs",
|
|
95
|
-
"format": "prettier --write .",
|
|
96
|
-
"format:check": "prettier --check .",
|
|
97
|
-
"test": "tsx --test 'src/**/*.test.ts'",
|
|
98
|
-
"arch:check": "depcruise src --config .dependency-cruiser.cjs",
|
|
99
|
-
"channel:parity": "tsx scripts/channel-parity.mjs",
|
|
100
|
-
"omnish": "tsx src/index.ts",
|
|
101
|
-
"link": "tsx src/index.ts link",
|
|
102
|
-
"run": "tsx src/index.ts run",
|
|
103
|
-
"local": "omnish stop || true; node scripts/build-bundle.mjs && npm link && omnish start",
|
|
104
|
-
"logout": "tsx src/index.ts logout"
|
|
105
115
|
}
|
|
106
|
-
}
|
|
116
|
+
}
|