@zimic/fetch 1.1.0-canary.4 → 1.1.1-canary.1
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 +23 -23
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"api",
|
|
14
14
|
"static"
|
|
15
15
|
],
|
|
16
|
-
"version": "1.1.
|
|
16
|
+
"version": "1.1.1-canary.1",
|
|
17
17
|
"homepage": "https://zimic.dev/docs/fetch",
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
@@ -61,43 +61,43 @@
|
|
|
61
61
|
},
|
|
62
62
|
"./package.json": "./package.json"
|
|
63
63
|
},
|
|
64
|
+
"scripts": {
|
|
65
|
+
"dev": "tsup --watch",
|
|
66
|
+
"build": "tsup",
|
|
67
|
+
"lint": "eslint --cache --no-error-on-unmatched-pattern --no-warn-ignored --fix",
|
|
68
|
+
"lint:turbo": "pnpm lint . --max-warnings 0",
|
|
69
|
+
"style": "prettier --log-level warn --ignore-unknown --no-error-on-unmatched-pattern --cache",
|
|
70
|
+
"style:check": "pnpm style --check",
|
|
71
|
+
"style:format": "pnpm style --write",
|
|
72
|
+
"test": "dotenv -v NODE_ENV=test -v FORCE_COLOR=1 -- vitest",
|
|
73
|
+
"test:turbo": "dotenv -v CI=true -- pnpm run test run --coverage",
|
|
74
|
+
"types:check": "tsc --noEmit",
|
|
75
|
+
"deps:prepare": "playwright install chromium"
|
|
76
|
+
},
|
|
64
77
|
"devDependencies": {
|
|
65
78
|
"@types/node": "^24.6.2",
|
|
66
79
|
"@vitest/browser": "^3.2.4",
|
|
67
80
|
"@vitest/coverage-istanbul": "^3.2.4",
|
|
81
|
+
"@zimic/eslint-config-node": "workspace:*",
|
|
82
|
+
"@zimic/interceptor": "workspace:*",
|
|
83
|
+
"@zimic/lint-staged-config": "workspace:*",
|
|
84
|
+
"@zimic/tsconfig": "workspace:*",
|
|
85
|
+
"@zimic/utils": "workspace:*",
|
|
68
86
|
"dotenv-cli": "^10.0.0",
|
|
69
87
|
"eslint": "^9.37.0",
|
|
70
88
|
"picocolors": "^1.1.1",
|
|
71
89
|
"playwright": "^1.55.1",
|
|
72
90
|
"tsup": "^8.4.0",
|
|
73
91
|
"typescript": "^5.9.3",
|
|
74
|
-
"vitest": "^3.2.4"
|
|
75
|
-
"@zimic/eslint-config-node": "0.0.0",
|
|
76
|
-
"@zimic/interceptor": "1.1.4-canary.1",
|
|
77
|
-
"@zimic/utils": "0.0.0",
|
|
78
|
-
"@zimic/tsconfig": "0.0.0",
|
|
79
|
-
"@zimic/lint-staged-config": "0.0.0"
|
|
92
|
+
"vitest": "^3.2.4"
|
|
80
93
|
},
|
|
81
94
|
"peerDependencies": {
|
|
82
|
-
"
|
|
83
|
-
"
|
|
95
|
+
"@zimic/http": "^1.2.0 || workspace:*",
|
|
96
|
+
"typescript": ">=5.0.0"
|
|
84
97
|
},
|
|
85
98
|
"peerDependenciesMeta": {
|
|
86
99
|
"typescript": {
|
|
87
100
|
"optional": true
|
|
88
101
|
}
|
|
89
|
-
},
|
|
90
|
-
"scripts": {
|
|
91
|
-
"dev": "tsup --watch",
|
|
92
|
-
"build": "tsup",
|
|
93
|
-
"lint": "eslint --cache --no-error-on-unmatched-pattern --no-warn-ignored --fix",
|
|
94
|
-
"lint:turbo": "pnpm lint . --max-warnings 0",
|
|
95
|
-
"style": "prettier --log-level warn --ignore-unknown --no-error-on-unmatched-pattern --cache",
|
|
96
|
-
"style:check": "pnpm style --check",
|
|
97
|
-
"style:format": "pnpm style --write",
|
|
98
|
-
"test": "dotenv -v NODE_ENV=test -v FORCE_COLOR=1 -- vitest",
|
|
99
|
-
"test:turbo": "dotenv -v CI=true -- pnpm run test run --coverage",
|
|
100
|
-
"types:check": "tsc --noEmit",
|
|
101
|
-
"deps:prepare": "playwright install chromium"
|
|
102
102
|
}
|
|
103
|
-
}
|
|
103
|
+
}
|