omnish 1.4.1 → 1.5.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omnish",
3
- "version": "1.4.1",
3
+ "version": "1.5.0",
4
4
  "description": "omnish — allowlisted inbox → your real shell (WhatsApp/Telegram; more surfaces later). No AI.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -36,18 +36,6 @@
36
36
  "bin": {
37
37
  "omnish": "dist/index.js"
38
38
  },
39
- "scripts": {
40
- "reinstall": "rm -rf node_modules && pnpm install",
41
- "prepack": "npm run build",
42
- "build": "node scripts/build-bundle.mjs",
43
- "typecheck": "tsc --noEmit",
44
- "test": "tsx --test 'src/**/*.test.ts'",
45
- "omnish": "tsx src/index.ts",
46
- "link": "tsx src/index.ts link",
47
- "run": "tsx src/index.ts run",
48
- "logout": "tsx src/index.ts logout"
49
- },
50
- "packageManager": "pnpm@11.0.8+sha512.4c4097e1dd2d42372c4e7fa5a791ff28fc75a484c7ac192e64b1df0fdef17594ba982f9b4fed9adfb3c757846f565b799b2763fb3733d1de1bcb82cf46684912",
51
39
  "engines": {
52
40
  "node": ">=22.13"
53
41
  },
@@ -70,12 +58,17 @@
70
58
  "tsx": "^4.19.2",
71
59
  "typescript": "^5.7.2"
72
60
  },
73
- "pnpm": {
74
- "onlyBuiltDependencies": [
75
- "@parcel/watcher",
76
- "better-sqlite3",
77
- "esbuild",
78
- "node-pty"
79
- ]
61
+ "scripts": {
62
+ "reinstall": "rm -rf node_modules && pnpm install",
63
+ "build": "node scripts/build-bundle.mjs",
64
+ "build:doc-index": "node scripts/build-doc-index.mjs",
65
+ "typecheck": "tsc --noEmit",
66
+ "pretypecheck": "node scripts/build-doc-index.mjs",
67
+ "pretest": "node scripts/build-doc-index.mjs",
68
+ "test": "tsx --test 'src/**/*.test.ts'",
69
+ "omnish": "tsx src/index.ts",
70
+ "link": "tsx src/index.ts link",
71
+ "run": "tsx src/index.ts run",
72
+ "logout": "tsx src/index.ts logout"
80
73
  }
81
- }
74
+ }