response-iterator 1.0.6 → 1.0.8

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 +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "response-iterator",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "description": "Creates an async iterator for a variety of inputs in the browser and node. Supports fetch, node-fetch, and cross-fetch",
5
5
  "keywords": [
6
6
  "Symbol",
@@ -49,6 +49,7 @@
49
49
  "./umd": "./dist/umd/response-iterator.cjs"
50
50
  },
51
51
  "main": "dist/cjs/index.js",
52
+ "source": "src/index.ts",
52
53
  "types": "dist/cjs/index.d.ts",
53
54
  "files": [
54
55
  "dist"
@@ -56,7 +57,7 @@
56
57
  "scripts": {
57
58
  "build": "tsds build",
58
59
  "docs": "tsds docs",
59
- "format": "biome check --write --unsafe",
60
+ "format": "tsds format",
60
61
  "prepublishOnly": "tsds validate",
61
62
  "test": "npm run test:node && npm run test:browser",
62
63
  "test:browser": "tsds test:browser --config wtr.config.mjs && tsds test:browser --config wtr.config.mjs \"test/**/*.test-browser.*\"",
@@ -65,7 +66,6 @@
65
66
  "version": "tsds version"
66
67
  },
67
68
  "devDependencies": {
68
- "@biomejs/biome": "*",
69
69
  "@types/mocha": "*",
70
70
  "@types/node": "*",
71
71
  "@web/dev-server-import-maps": "*",
@@ -78,6 +78,7 @@
78
78
  "pinkie-promise": "*",
79
79
  "readable-stream": "^2.3.8",
80
80
  "ts-dev-stack": "*",
81
+ "tsds-config": "*",
81
82
  "tsds-web-test-runner": "*",
82
83
  "undici": "*"
83
84
  },
@@ -85,7 +86,6 @@
85
86
  "node": ">=0.8"
86
87
  },
87
88
  "tsds": {
88
- "source": "src/index.ts",
89
89
  "targets": [
90
90
  "cjs",
91
91
  "esm",