omnish 2.1.1 → 2.1.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 +32 -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 +339 -337
- 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 +21 -31
|
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.1.
|
|
3
|
+
"version": "2.1.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",
|
|
@@ -38,27 +38,6 @@
|
|
|
38
38
|
"bin": {
|
|
39
39
|
"omnish": "dist/index.js"
|
|
40
40
|
},
|
|
41
|
-
"scripts": {
|
|
42
|
-
"reinstall": "rm -rf node_modules && pnpm install",
|
|
43
|
-
"postinstall": "node scripts/check-native-modules.mjs && node scripts/fix-node-pty-perms.mjs",
|
|
44
|
-
"prepack": "npm run build",
|
|
45
|
-
"build": "node scripts/build-bundle.mjs",
|
|
46
|
-
"build:doc-index": "node scripts/build-doc-index.mjs",
|
|
47
|
-
"typecheck": "tsc --noEmit",
|
|
48
|
-
"pretypecheck": "node scripts/build-doc-index.mjs",
|
|
49
|
-
"pretest": "node scripts/build-doc-index.mjs",
|
|
50
|
-
"format": "prettier --write .",
|
|
51
|
-
"format:check": "prettier --check .",
|
|
52
|
-
"test": "tsx --test 'src/**/*.test.ts'",
|
|
53
|
-
"arch:check": "depcruise src --config .dependency-cruiser.cjs",
|
|
54
|
-
"channel:parity": "tsx scripts/channel-parity.mjs",
|
|
55
|
-
"omnish": "tsx src/index.ts",
|
|
56
|
-
"link": "tsx src/index.ts link",
|
|
57
|
-
"run": "tsx src/index.ts run",
|
|
58
|
-
"local": "omnish stop || true; node scripts/build-bundle.mjs && npm link && omnish start",
|
|
59
|
-
"logout": "tsx src/index.ts logout"
|
|
60
|
-
},
|
|
61
|
-
"packageManager": "pnpm@11.9.0+sha512.bd682d5d03fe525ef7c9fd6780c6884d1e756ac4c9c9fe00c538782824310dcf90e3ddc4f53835f06dfaebd5085e41855e0bcbb3b60de2ac5bbab89e5036f03b",
|
|
62
41
|
"engines": {
|
|
63
42
|
"node": ">=22.13"
|
|
64
43
|
},
|
|
@@ -89,14 +68,6 @@
|
|
|
89
68
|
"tsx": "^4.19.2",
|
|
90
69
|
"typescript": "^5.7.2"
|
|
91
70
|
},
|
|
92
|
-
"pnpm": {
|
|
93
|
-
"onlyBuiltDependencies": [
|
|
94
|
-
"@parcel/watcher",
|
|
95
|
-
"better-sqlite3",
|
|
96
|
-
"esbuild",
|
|
97
|
-
"node-pty"
|
|
98
|
-
]
|
|
99
|
-
},
|
|
100
71
|
"allowScripts": {
|
|
101
72
|
"@parcel/watcher": true,
|
|
102
73
|
"@whiskeysockets/baileys": true,
|
|
@@ -104,5 +75,24 @@
|
|
|
104
75
|
"node-pty": true,
|
|
105
76
|
"sharp": true,
|
|
106
77
|
"protobufjs": true
|
|
78
|
+
},
|
|
79
|
+
"scripts": {
|
|
80
|
+
"reinstall": "rm -rf node_modules && pnpm install",
|
|
81
|
+
"postinstall": "node scripts/check-native-modules.mjs && node scripts/fix-node-pty-perms.mjs",
|
|
82
|
+
"build": "node scripts/build-bundle.mjs",
|
|
83
|
+
"build:doc-index": "node scripts/build-doc-index.mjs",
|
|
84
|
+
"typecheck": "tsc --noEmit",
|
|
85
|
+
"pretypecheck": "node scripts/build-doc-index.mjs",
|
|
86
|
+
"pretest": "node scripts/build-doc-index.mjs",
|
|
87
|
+
"format": "prettier --write .",
|
|
88
|
+
"format:check": "prettier --check .",
|
|
89
|
+
"test": "tsx --test 'src/**/*.test.ts'",
|
|
90
|
+
"arch:check": "depcruise src --config .dependency-cruiser.cjs",
|
|
91
|
+
"channel:parity": "tsx scripts/channel-parity.mjs",
|
|
92
|
+
"omnish": "tsx src/index.ts",
|
|
93
|
+
"link": "tsx src/index.ts link",
|
|
94
|
+
"run": "tsx src/index.ts run",
|
|
95
|
+
"local": "omnish stop || true; node scripts/build-bundle.mjs && npm link && omnish start",
|
|
96
|
+
"logout": "tsx src/index.ts logout"
|
|
107
97
|
}
|
|
108
|
-
}
|
|
98
|
+
}
|