@zayne-labs/callapi 0.7.2 → 0.7.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.
Files changed (1) hide show
  1. package/package.json +10 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zayne-labs/callapi",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "type": "module",
5
5
  "description": "A lightweight wrapper over fetch with quality of life improvements like built-in request cancellation, retries, interceptors and more",
6
6
  "main": "./dist/esm/index.js",
@@ -45,7 +45,9 @@
45
45
  "typescript-eslint": "^8.1.0"
46
46
  },
47
47
  "publishConfig": {
48
- "access": "public"
48
+ "access": "public",
49
+ "registry": "https://registry.npmjs.org/",
50
+ "provenance": true
49
51
  },
50
52
  "files": [
51
53
  "dist"
@@ -57,10 +59,10 @@
57
59
  }
58
60
  ],
59
61
  "sideEffects": false,
60
- "repository": "ryan-zayne/callApi",
61
- "homepage": "https://github.com/ryan-zayne/callApi#readme",
62
+ "repository": "zayne-labs/CallApi",
63
+ "homepage": "https://github.com/zayne-labs/CallApi#readme",
62
64
  "bugs": {
63
- "url": "https://github.com/ryan-zayne/callApi/issues"
65
+ "url": "https://github.com/zayne-labs/CallApi/issues"
64
66
  },
65
67
  "license": "MIT",
66
68
  "author": "Ryan Zayne",
@@ -78,14 +80,14 @@
78
80
  },
79
81
  "scripts": {
80
82
  "test:check-types": "tsc --pretty --incremental -p tsconfig.json",
81
- "test:format": "prettier --write --cache .",
82
- "test:lint": "eslint src/**/*.ts --cache --max-warnings 10 --report-unused-disable-directives ",
83
+ "test:format": "prettier --cache --write .",
84
+ "test:lint": "eslint src/**/*.ts --cache --max-warnings 0 --report-unused-disable-directives",
83
85
  "test:size": "size-limit",
84
86
  "test:publint": "publint --strict .",
85
87
  "test:attw": "attw --pack . --exclude-entrypoints utils",
86
88
  "test:release": "pkg-pr-new publish",
87
89
  "build": "tsup",
88
- "build:dev": "concurrently --prefix-colors \"#7da4f8.bold,yellow.bold\" --names TSUP,PUBLINT,ATTW \"pnpm tsup --watch\"' 'pnpm:test:publint' 'pnpm:test:attw'",
90
+ "build:dev": "concurrently --prefix-colors \"yellow.bold,#7da4f8.bold,magenta\" --names PUBLINT,TSUP,ATTW 'pnpm:test:publint' \"pnpm build --watch\" 'pnpm:test:attw'",
89
91
  "version-package": "changeset version",
90
92
  "release": "changeset publish"
91
93
  }