@funnycode/myclaude 0.1.75 → 0.1.76

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/dist/myclaude.js CHANGED
@@ -4,8 +4,8 @@
4
4
  // MACRO - build-time constants (injected by build.ts)
5
5
  // MACRO injected by build script
6
6
  globalThis.MACRO = {
7
- VERSION: "0.1.75",
8
- BUILD_TIME: "2026-07-15T13:53:41.258Z",
7
+ VERSION: "0.1.76",
8
+ BUILD_TIME: "2026-07-15T13:58:27.009Z",
9
9
  PACKAGE_URL: "@funnycode/myclaude",
10
10
  NATIVE_PACKAGE_URL: "@funnycode/myclaude",
11
11
  VERSION_CHANGELOG: '',
package/dist/myclaude.mjs CHANGED
@@ -4,8 +4,8 @@
4
4
  // MACRO - build-time constants (injected by build.ts)
5
5
  // MACRO injected by build script
6
6
  globalThis.MACRO = {
7
- VERSION: "0.1.75",
8
- BUILD_TIME: "2026-07-15T13:53:41.258Z",
7
+ VERSION: "0.1.76",
8
+ BUILD_TIME: "2026-07-15T13:58:27.009Z",
9
9
  PACKAGE_URL: "@funnycode/myclaude",
10
10
  NATIVE_PACKAGE_URL: "@funnycode/myclaude",
11
11
  VERSION_CHANGELOG: '',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funnycode/myclaude",
3
- "version": "0.1.75",
3
+ "version": "0.1.76",
4
4
  "private": false,
5
5
  "description": "An open-source AI coding assistant in your terminal - powered by Claude",
6
6
  "license": "MIT",
@@ -38,7 +38,8 @@
38
38
  "README.md",
39
39
  "README.zh-CN.md",
40
40
  "CHANGELOG.md",
41
- "docs/funnycode.png"
41
+ "docs/funnycode.png",
42
+ "shims/node-domexception/"
42
43
  ],
43
44
  "publishConfig": {
44
45
  "access": "public"
@@ -0,0 +1,3 @@
1
+ // Node.js 18+ has globalThis.DOMException built in.
2
+ // This shim replaces the deprecated node-domexception package.
3
+ module.exports = globalThis.DOMException;
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "node-domexception",
3
+ "version": "1.0.0",
4
+ "private": true,
5
+ "main": "index.js",
6
+ "license": "MIT"
7
+ }