@alextheman/utility 2.20.0 → 3.0.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": "@alextheman/utility",
3
- "version": "2.20.0",
3
+ "version": "3.0.0",
4
4
  "description": "Helpful utility functions",
5
5
  "repository": {
6
6
  "type": "git",
@@ -16,10 +16,11 @@
16
16
  "dist"
17
17
  ],
18
18
  "scripts": {
19
- "build": "tsup",
19
+ "build": "tsdown",
20
20
  "change-major": "npm version major -m \"Change version number to v%s\"",
21
21
  "change-minor": "npm version minor -m \"Change version number to v%s\"",
22
22
  "change-patch": "npm version patch -m \"Change version number to v%s\"",
23
+ "create-local-package": "npm run build && rm -f alextheman-utility-*.tgz && npm pack",
23
24
  "format": "npm run format-prettier && npm run format-eslint",
24
25
  "format-eslint": "eslint --fix --suppress-all \"package.json\" \"src/**/*.ts\" \"tests/**/*.ts\" && rm -f eslint-suppressions.json",
25
26
  "format-prettier": "npm run format-prettier-typescript && npm run format-prettier-javascript",
@@ -34,20 +35,22 @@
34
35
  "prepare": "husky",
35
36
  "test": "vitest run",
36
37
  "test-watch": "vitest",
37
- "update-dependencies": "bash -c 'npx npm-check-updates -u \"$@\" && npm install' --"
38
+ "update-dependencies": "bash -c 'npx npm-check-updates -u \"$@\" && npm install' --",
39
+ "use-live-eslint-plugin": "npm uninstall @alextheman/eslint-plugin && npm install --save-dev @alextheman/eslint-plugin",
40
+ "use-local-eslint-plugin": "npm --prefix ../eslint-plugin run create-local-package && npm uninstall @alextheman/eslint-plugin && npm install --save-dev ../eslint-plugin/alextheman-eslint-plugin-*.tgz"
38
41
  },
39
42
  "dependencies": {
40
43
  "zod": "^4.1.12"
41
44
  },
42
45
  "devDependencies": {
43
- "@alextheman/eslint-plugin": "^3.2.1",
46
+ "@alextheman/eslint-plugin": "^4.1.0",
44
47
  "@types/node": "^24.10.1",
45
48
  "eslint": "^9.39.1",
46
49
  "globals": "^16.5.0",
47
50
  "husky": "^9.1.7",
48
51
  "jsdom": "^27.2.0",
49
52
  "prettier": "^3.6.2",
50
- "tsup": "^8.5.1",
53
+ "tsdown": "^0.16.6",
51
54
  "typescript": "^5.9.3",
52
55
  "vite-tsconfig-paths": "^5.1.4",
53
56
  "vitest": "^4.0.13"