@sudobility/types 1.9.40 → 1.9.41

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 (1) hide show
  1. package/package.json +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sudobility/types",
3
- "version": "1.9.40",
3
+ "version": "1.9.41",
4
4
  "description": "Comprehensive TypeScript types, interfaces, and utilities for Web3 email applications - optimized for AI-assisted development",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
@@ -23,9 +23,9 @@
23
23
  }
24
24
  },
25
25
  "scripts": {
26
- "build": "npm run build:esm && npm run build:cjs",
26
+ "build": "bun run build:esm && bun run build:cjs",
27
27
  "build:esm": "tsc -p tsconfig.esm.json",
28
- "build:cjs": "tsc -p tsconfig.cjs.json && npm run build:cjs-rename",
28
+ "build:cjs": "tsc -p tsconfig.cjs.json && bun run build:cjs-rename",
29
29
  "build:cjs-rename": "find dist -name '*.js' -not -name '*.cjs' -exec sh -c 'cp \"$1\" \"${1%.js}.cjs\"' _ {} \\;",
30
30
  "clean": "rimraf dist",
31
31
  "dev": "tsc --watch",
@@ -37,11 +37,11 @@
37
37
  "format": "prettier --write \"src/**/*.{ts,js,json,md}\"",
38
38
  "format:check": "prettier --check \"src/**/*.{ts,js,json,md}\"",
39
39
  "typecheck": "tsc --noEmit",
40
- "verify": "npm run typecheck && npm run lint && npm run test && npm run build",
40
+ "verify": "bun run typecheck && bun run lint && bun run test && bun run build",
41
41
  "ai:analyze": "node .ai/scripts/analyze-types.js",
42
42
  "ai:validate-exports": "node .ai/scripts/validate-exports.js",
43
- "ai:docs": "npm run ai:analyze && npm run ai:validate-exports",
44
- "prepublishOnly": "npm run clean && npm run verify"
43
+ "ai:docs": "bun run ai:analyze && bun run ai:validate-exports",
44
+ "prepublishOnly": "bun run clean && bun run verify"
45
45
  },
46
46
  "files": [
47
47
  "dist/**/*",