@alwatr/http-primer 5.5.3 → 5.5.5

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 CHANGED
@@ -58,6 +58,4 @@ The following companies, organizations, and individuals support Nanolib ongoing
58
58
 
59
59
  Contributions are welcome! Please read our [contribution guidelines](https://github.com/Alwatr/.github/blob/next/CONTRIBUTING.md) before submitting a pull request.
60
60
 
61
- ### License
62
61
 
63
- This project is licensed under the [AGPL-3.0 License](LICENSE).
package/dist/main.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /* @alwatr/http-primer v5.5.3 */
1
+ /* @alwatr/http-primer v5.5.5 */
2
2
  "use strict";
3
3
  var __defProp = Object.defineProperty;
4
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -473,7 +473,7 @@ var MimeTypes = {
473
473
  };
474
474
 
475
475
  // src/main.ts
476
- __dev_mode__: import_package_tracer.packageTracer.add("@alwatr/http-primer", "5.5.3");
476
+ __dev_mode__: import_package_tracer.packageTracer.add("@alwatr/http-primer", "5.5.5");
477
477
  // Annotate the CommonJS export names for ESM import in node:
478
478
  0 && (module.exports = {
479
479
  HttpMethods,
package/dist/main.mjs CHANGED
@@ -1,4 +1,4 @@
1
- /* @alwatr/http-primer v5.5.3 */
1
+ /* @alwatr/http-primer v5.5.5 */
2
2
 
3
3
  // src/main.ts
4
4
  import { packageTracer } from "@alwatr/package-tracer";
@@ -447,7 +447,7 @@ var MimeTypes = {
447
447
  };
448
448
 
449
449
  // src/main.ts
450
- __dev_mode__: packageTracer.add("@alwatr/http-primer", "5.5.3");
450
+ __dev_mode__: packageTracer.add("@alwatr/http-primer", "5.5.5");
451
451
  export {
452
452
  HttpMethods,
453
453
  HttpStatusCodes,
package/package.json CHANGED
@@ -1,34 +1,19 @@
1
1
  {
2
2
  "name": "@alwatr/http-primer",
3
- "version": "5.5.3",
4
3
  "description": "Essential HTTP utilities for TypeScript, including types for HTTP methods, status codes, and headers.",
4
+ "version": "5.5.5",
5
5
  "author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
6
- "keywords": [
7
- "http",
8
- "http-primer",
9
- "status-codes",
10
- "status",
11
- "headers-types",
12
- "http-headers",
13
- "cross-platform",
14
- "ECMAScript",
15
- "typescript",
16
- "javascript",
17
- "node",
18
- "nodejs",
19
- "browser",
20
- "esm",
21
- "module",
22
- "utility",
23
- "util",
24
- "utils",
25
- "nanolib",
26
- "alwatr"
27
- ],
28
- "type": "module",
29
- "main": "./dist/main.cjs",
30
- "module": "./dist/main.mjs",
31
- "types": "./dist/main.d.ts",
6
+ "bugs": "https://github.com/Alwatr/nanolib/issues",
7
+ "dependencies": {
8
+ "@alwatr/package-tracer": "5.5.5"
9
+ },
10
+ "devDependencies": {
11
+ "@alwatr/nano-build": "5.5.5",
12
+ "@alwatr/prettier-config": "5.0.1",
13
+ "@alwatr/tsconfig-base": "5.0.1",
14
+ "@alwatr/type-helper": "5.4.3",
15
+ "typescript": "^5.9.2"
16
+ },
32
17
  "exports": {
33
18
  ".": {
34
19
  "types": "./dist/main.d.ts",
@@ -36,12 +21,38 @@
36
21
  "require": "./dist/main.cjs"
37
22
  }
38
23
  },
39
- "license": "AGPL-3.0-only",
40
24
  "files": [
41
25
  "**/*.{js,mjs,cjs,map,d.ts,html,md,LEGAL.txt}",
42
26
  "LICENSE",
43
27
  "!demo/**/*"
44
28
  ],
29
+ "homepage": "https://github.com/Alwatr/nanolib/tree/next/packages/http-primer#readme",
30
+ "keywords": [
31
+ "alwatr",
32
+ "browser",
33
+ "cross-platform",
34
+ "ECMAScript",
35
+ "esm",
36
+ "headers-types",
37
+ "http",
38
+ "http-headers",
39
+ "http-primer",
40
+ "javascript",
41
+ "module",
42
+ "nanolib",
43
+ "node",
44
+ "nodejs",
45
+ "status",
46
+ "status-codes",
47
+ "typescript",
48
+ "util",
49
+ "utility",
50
+ "utils"
51
+ ],
52
+ "license": "MPL-2.0",
53
+ "main": "./dist/main.cjs",
54
+ "module": "./dist/main.mjs",
55
+ "prettier": "@alwatr/prettier-config",
45
56
  "publishConfig": {
46
57
  "access": "public"
47
58
  },
@@ -50,34 +61,21 @@
50
61
  "url": "https://github.com/Alwatr/nanolib",
51
62
  "directory": "packages/http-primer"
52
63
  },
53
- "homepage": "https://github.com/Alwatr/nanolib/tree/next/packages/http-primer#readme",
54
- "bugs": {
55
- "url": "https://github.com/Alwatr/nanolib/issues"
56
- },
57
- "prettier": "@alwatr/prettier-config",
58
64
  "scripts": {
59
65
  "b": "yarn run build",
60
- "w": "yarn run watch",
61
- "c": "yarn run clean",
62
- "cb": "yarn run clean && yarn run build",
63
- "d": "yarn run build:es && yarn node --enable-source-maps --trace-warnings",
64
66
  "build": "yarn run build:ts && yarn run build:es",
65
67
  "build:es": "nano-build --preset=module",
66
68
  "build:ts": "tsc --build",
69
+ "c": "yarn run clean",
70
+ "cb": "yarn run clean && yarn run build",
71
+ "clean": "rm -rfv dist *.tsbuildinfo",
72
+ "d": "yarn run build:es && yarn node --enable-source-maps --trace-warnings",
73
+ "w": "yarn run watch",
67
74
  "watch": "yarn run watch:ts & yarn run watch:es",
68
75
  "watch:es": "yarn run build:es --watch",
69
- "watch:ts": "yarn run build:ts --watch --preserveWatchOutput",
70
- "clean": "rm -rfv dist *.tsbuildinfo"
71
- },
72
- "dependencies": {
73
- "@alwatr/package-tracer": "^5.5.3"
76
+ "watch:ts": "yarn run build:ts --watch --preserveWatchOutput"
74
77
  },
75
- "devDependencies": {
76
- "@alwatr/nano-build": "^5.5.3",
77
- "@alwatr/prettier-config": "^5.0.0",
78
- "@alwatr/tsconfig-base": "^5.0.0",
79
- "@alwatr/type-helper": "^5.4.1",
80
- "typescript": "^5.8.3"
81
- },
82
- "gitHead": "424a7a3e08e5f10fcfe53440d1cead68c88baf32"
78
+ "type": "module",
79
+ "types": "./dist/main.d.ts",
80
+ "gitHead": "102cc505864da042258ffe18894dc5a9157b0040"
83
81
  }