@httpstate/typescript 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/dist/index.cjs.js +2 -0
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.esm.js +2 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.global.js +2 -0
- package/dist/index.global.js.map +1 -0
- package/package.json +27 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var g=Object.defineProperty;var s=Object.getOwnPropertyDescriptor;var l=Object.getOwnPropertyNames;var u=Object.prototype.hasOwnProperty;var a=(e,t)=>{for(var n in t)g(e,n,{get:t[n],enumerable:!0})},c=(e,t,n,o)=>{if(t&&typeof t=="object"||typeof t=="function")for(let r of l(t))!u.call(e,r)&&r!==n&&g(e,r,{get:()=>t[r],enumerable:!(o=s(t,r))||o.enumerable});return e};var i=e=>c(g({},"__esModule",{value:!0}),e);var d={};a(d,{default:()=>b});module.exports=i(d);var b=()=>Object.assign(e=>(console.log("uuid",e),e),{get:()=>{}});
|
|
2
|
+
//# sourceMappingURL=index.cjs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["// HTTP State, https://httpstate.com/\n// Copyright (C) Alex Morales, 2026\n// \n// Unless otherwise stated in particular files or directories, this software is free software.\n// You can redistribute it and/or modify it under the terms of the GNU Affero\n// General Public License as published by the Free Software Foundation, either\n// version 3 of the License, or (at your option) any later version.\n\nexport default () => { //TYPE\n return Object.assign(\n (uuid:string) => {\n console.log('uuid', uuid);\n\n return uuid;\n },\n {\n get:() => {}\n // ...\n }\n );\n};\n"],"mappings":"yaAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,aAAAE,IAAA,eAAAC,EAAAH,GAQA,IAAOE,EAAQ,IACN,OAAO,OACXE,IACC,QAAQ,IAAI,OAAQA,CAAI,EAEjBA,GAET,CACE,IAAI,IAAM,CAAC,CAEb,CACF","names":["index_exports","__export","index_default","__toCommonJS","uuid"]}
|
package/dist/index.d.cts
ADDED
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["// HTTP State, https://httpstate.com/\n// Copyright (C) Alex Morales, 2026\n// \n// Unless otherwise stated in particular files or directories, this software is free software.\n// You can redistribute it and/or modify it under the terms of the GNU Affero\n// General Public License as published by the Free Software Foundation, either\n// version 3 of the License, or (at your option) any later version.\n\nexport default () => { //TYPE\n return Object.assign(\n (uuid:string) => {\n console.log('uuid', uuid);\n\n return uuid;\n },\n {\n get:() => {}\n // ...\n }\n );\n};\n"],"mappings":"AAQA,IAAOA,EAAQ,IACN,OAAO,OACXC,IACC,QAAQ,IAAI,OAAQA,CAAI,EAEjBA,GAET,CACE,IAAI,IAAM,CAAC,CAEb,CACF","names":["index_default","uuid"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var httpstate=(()=>{var g=Object.defineProperty;var s=Object.getOwnPropertyDescriptor;var l=Object.getOwnPropertyNames;var u=Object.prototype.hasOwnProperty;var a=(e,t)=>{for(var n in t)g(e,n,{get:t[n],enumerable:!0})},c=(e,t,n,o)=>{if(t&&typeof t=="object"||typeof t=="function")for(let r of l(t))!u.call(e,r)&&r!==n&&g(e,r,{get:()=>t[r],enumerable:!(o=s(t,r))||o.enumerable});return e};var i=e=>c(g({},"__esModule",{value:!0}),e);var d={};a(d,{default:()=>b});var b=()=>Object.assign(e=>(console.log("uuid",e),e),{get:()=>{}});return i(d);})();
|
|
2
|
+
//# sourceMappingURL=index.global.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["// HTTP State, https://httpstate.com/\n// Copyright (C) Alex Morales, 2026\n// \n// Unless otherwise stated in particular files or directories, this software is free software.\n// You can redistribute it and/or modify it under the terms of the GNU Affero\n// General Public License as published by the Free Software Foundation, either\n// version 3 of the License, or (at your option) any later version.\n\nexport default () => { //TYPE\n return Object.assign(\n (uuid:string) => {\n console.log('uuid', uuid);\n\n return uuid;\n },\n {\n get:() => {}\n // ...\n }\n );\n};\n"],"mappings":"6bAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,aAAAE,IAQA,IAAOA,EAAQ,IACN,OAAO,OACXC,IACC,QAAQ,IAAI,OAAQA,CAAI,EAEjBA,GAET,CACE,IAAI,IAAM,CAAC,CAEb,CACF","names":["index_exports","__export","index_default","uuid"]}
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"author": "Alex Morales, HTTP State",
|
|
3
|
+
"description": "HTTP State",
|
|
4
|
+
"devDependencies": {
|
|
5
|
+
"tsup": "^8.5.1",
|
|
6
|
+
"typescript": "^5.9.3"
|
|
7
|
+
},
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"keywords": [],
|
|
12
|
+
"license": "AGPL-3.0",
|
|
13
|
+
"main": "dist/index.esm.js",
|
|
14
|
+
"name": "@httpstate/typescript",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/httpstate/httpstate.git"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "tsup",
|
|
21
|
+
"clean": "rm -rf dist",
|
|
22
|
+
"prepublishOnly": "npm run build"
|
|
23
|
+
},
|
|
24
|
+
"type": "module",
|
|
25
|
+
"types": "dist/index.d.ts",
|
|
26
|
+
"version": "0.0.1"
|
|
27
|
+
}
|