@stryke/http 0.0.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/LICENSE +201 -0
- package/README.md +297 -0
- package/dist/cookie.cjs +187 -0
- package/dist/cookie.d.ts +39 -0
- package/dist/cookie.mjs +1 -0
- package/dist/format-data-uri.cjs +8 -0
- package/dist/format-data-uri.d.ts +8 -0
- package/dist/format-data-uri.mjs +1 -0
- package/dist/index.cjs +38 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.mjs +1 -0
- package/dist/types.cjs +1 -0
- package/dist/types.d.ts +193 -0
- package/dist/types.mjs +0 -0
- package/dist/url-builder.cjs +96 -0
- package/dist/url-builder.d.ts +138 -0
- package/dist/url-builder.mjs +1 -0
- package/package.json +134 -0
package/package.json
ADDED
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@stryke/http",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "A package containing HTTP communication utilities used by Storm Software.",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "github",
|
|
8
|
+
"url": "https://github.com/storm-software/stryke.git",
|
|
9
|
+
"directory": "packages/http"
|
|
10
|
+
},
|
|
11
|
+
"private": false,
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"ufo": "1.5.4",
|
|
14
|
+
"@stryke/json": ">=0.0.1",
|
|
15
|
+
"@stryke/types": ">=0.0.1"
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": { "@types/node": "^22.10.2" },
|
|
18
|
+
"publishConfig": { "access": "public" },
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"files": ["dist/**/*"],
|
|
21
|
+
"homepage": "https://stormsoftware.com",
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://stormsoftware.com/support",
|
|
24
|
+
"email": "support@stormsoftware.com"
|
|
25
|
+
},
|
|
26
|
+
"license": "Apache-2.0",
|
|
27
|
+
"keywords": [
|
|
28
|
+
"stryke",
|
|
29
|
+
"typescript",
|
|
30
|
+
"utilities",
|
|
31
|
+
"storm-stack",
|
|
32
|
+
"storm-software",
|
|
33
|
+
"storm",
|
|
34
|
+
"storm-ops",
|
|
35
|
+
"cyclone-ui",
|
|
36
|
+
"sullivanpj",
|
|
37
|
+
"monorepo"
|
|
38
|
+
],
|
|
39
|
+
"funding": {
|
|
40
|
+
"type": "github",
|
|
41
|
+
"url": "https://github.com/sponsors/storm-software"
|
|
42
|
+
},
|
|
43
|
+
"author": {
|
|
44
|
+
"name": "Storm Software",
|
|
45
|
+
"email": "contact@stormsoftware.com",
|
|
46
|
+
"url": "https://stormsoftware.com"
|
|
47
|
+
},
|
|
48
|
+
"maintainers": [
|
|
49
|
+
{
|
|
50
|
+
"name": "Storm Software",
|
|
51
|
+
"email": "contact@stormsoftware.com",
|
|
52
|
+
"url": "https://stormsoftware.com"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"contributors": [
|
|
56
|
+
{
|
|
57
|
+
"name": "Storm Software",
|
|
58
|
+
"email": "contact@stormsoftware.com",
|
|
59
|
+
"url": "https://stormsoftware.com"
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
"exports": {
|
|
63
|
+
"./url-builder": {
|
|
64
|
+
"import": {
|
|
65
|
+
"types": "./dist/url-builder.d.ts",
|
|
66
|
+
"default": "./dist/url-builder.mjs"
|
|
67
|
+
},
|
|
68
|
+
"require": {
|
|
69
|
+
"types": "./dist/url-builder.d.ts",
|
|
70
|
+
"default": "./dist/url-builder.cjs"
|
|
71
|
+
},
|
|
72
|
+
"default": {
|
|
73
|
+
"types": "./dist/url-builder.d.ts",
|
|
74
|
+
"default": "./dist/url-builder.mjs"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"./types": {
|
|
78
|
+
"import": { "types": "./dist/types.d.ts", "default": "./dist/types.mjs" },
|
|
79
|
+
"require": {
|
|
80
|
+
"types": "./dist/types.d.ts",
|
|
81
|
+
"default": "./dist/types.cjs"
|
|
82
|
+
},
|
|
83
|
+
"default": { "types": "./dist/types.d.ts", "default": "./dist/types.mjs" }
|
|
84
|
+
},
|
|
85
|
+
"./index": {
|
|
86
|
+
"import": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" },
|
|
87
|
+
"require": {
|
|
88
|
+
"types": "./dist/index.d.ts",
|
|
89
|
+
"default": "./dist/index.cjs"
|
|
90
|
+
},
|
|
91
|
+
"default": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" }
|
|
92
|
+
},
|
|
93
|
+
"./format-data-uri": {
|
|
94
|
+
"import": {
|
|
95
|
+
"types": "./dist/format-data-uri.d.ts",
|
|
96
|
+
"default": "./dist/format-data-uri.mjs"
|
|
97
|
+
},
|
|
98
|
+
"require": {
|
|
99
|
+
"types": "./dist/format-data-uri.d.ts",
|
|
100
|
+
"default": "./dist/format-data-uri.cjs"
|
|
101
|
+
},
|
|
102
|
+
"default": {
|
|
103
|
+
"types": "./dist/format-data-uri.d.ts",
|
|
104
|
+
"default": "./dist/format-data-uri.mjs"
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"./cookie": {
|
|
108
|
+
"import": {
|
|
109
|
+
"types": "./dist/cookie.d.ts",
|
|
110
|
+
"default": "./dist/cookie.mjs"
|
|
111
|
+
},
|
|
112
|
+
"require": {
|
|
113
|
+
"types": "./dist/cookie.d.ts",
|
|
114
|
+
"default": "./dist/cookie.cjs"
|
|
115
|
+
},
|
|
116
|
+
"default": {
|
|
117
|
+
"types": "./dist/cookie.d.ts",
|
|
118
|
+
"default": "./dist/cookie.mjs"
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
".": {
|
|
122
|
+
"import": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" },
|
|
123
|
+
"require": {
|
|
124
|
+
"types": "./dist/index.d.ts",
|
|
125
|
+
"default": "./dist/index.cjs"
|
|
126
|
+
},
|
|
127
|
+
"default": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" }
|
|
128
|
+
},
|
|
129
|
+
"./package.json": "./package.json"
|
|
130
|
+
},
|
|
131
|
+
"main": "./dist/index.cjs",
|
|
132
|
+
"module": "./dist/index.mjs",
|
|
133
|
+
"types": "./dist/index.d.ts"
|
|
134
|
+
}
|