@stryke/http 0.0.1 → 0.1.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/README.md +15 -15
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -54,21 +54,21 @@ between processes easier in other packages/applications.
|
|
|
54
54
|
|
|
55
55
|
## Table of Contents
|
|
56
56
|
|
|
57
|
-
- [Stryke - Http Helpers](#stryke---http-helpers)
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
57
|
+
- [Stryke - Http Helpers](#stryke---http-helpers)
|
|
58
|
+
- [Table of Contents](#table-of-contents)
|
|
59
|
+
- [Installing](#installing)
|
|
60
|
+
- [Reduced Package Size](#reduced-package-size)
|
|
61
|
+
- [Development](#development)
|
|
62
|
+
- [Building](#building)
|
|
63
|
+
- [Running unit tests](#running-unit-tests)
|
|
64
|
+
- [Linting](#linting)
|
|
65
|
+
- [Storm Workspaces](#storm-workspaces)
|
|
66
|
+
- [Roadmap](#roadmap)
|
|
67
|
+
- [Support](#support)
|
|
68
|
+
- [License](#license)
|
|
69
|
+
- [Changelog](#changelog)
|
|
70
|
+
- [Contributing](#contributing)
|
|
71
|
+
- [Contributors](#contributors)
|
|
72
72
|
|
|
73
73
|
<!-- END doctoc -->
|
|
74
74
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stryke/http",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing HTTP communication utilities used by Storm Software.",
|
|
6
6
|
"repository": {
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"private": false,
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"ufo": "1.5.4",
|
|
14
|
-
"@stryke/json": ">=0.
|
|
15
|
-
"@stryke/types": ">=0.
|
|
14
|
+
"@stryke/json": ">=0.1.1",
|
|
15
|
+
"@stryke/types": ">=0.1.1"
|
|
16
16
|
},
|
|
17
|
-
"devDependencies": { "@types/node": "^22.
|
|
17
|
+
"devDependencies": { "@types/node": "^22.13.1" },
|
|
18
18
|
"publishConfig": { "access": "public" },
|
|
19
19
|
"sideEffects": false,
|
|
20
20
|
"files": ["dist/**/*"],
|