rxfy 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/dist/index.cjs ADDED
@@ -0,0 +1,2 @@
1
+ "use strict";var n=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var b=Object.prototype.hasOwnProperty;var u=(l,e)=>{for(var r in e)n(l,r,{get:e[r],enumerable:!0})},c=(l,e,r,t)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of i(e))!b.call(l,o)&&o!==r&&n(l,o,{get:()=>e[o],enumerable:!(t=h(e,o))||t.enumerable});return l};var d=l=>c(n({},"__esModule",{value:!0}),l);var p={};u(p,{helloWorld:()=>f});module.exports=d(p);function f(){return"The lib will be there very soon!"}0&&(module.exports={helloWorld});
2
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export function helloWorld() {\n return \"The lib will be there very soon!\";\n}\n"],"mappings":"yaAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,gBAAAE,IAAA,eAAAC,EAAAH,GAAO,SAASE,GAAa,CAC3B,MAAO,kCACT","names":["index_exports","__export","helloWorld","__toCommonJS"]}
@@ -0,0 +1,3 @@
1
+ declare function helloWorld(): string;
2
+
3
+ export { helloWorld };
@@ -0,0 +1,3 @@
1
+ declare function helloWorld(): string;
2
+
3
+ export { helloWorld };
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ function e(){return"The lib will be there very soon!"}export{e as helloWorld};
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export function helloWorld() {\n return \"The lib will be there very soon!\";\n}\n"],"mappings":"AAAO,SAASA,GAAa,CAC3B,MAAO,kCACT","names":["helloWorld"]}
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "rxfy",
3
+ "version": "0.1.1",
4
+ "license": "MIT",
5
+ "type": "module",
6
+ "exports": {
7
+ ".": {
8
+ "import": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "default": "./dist/index.cjs"
11
+ }
12
+ },
13
+ "main": "./dist/index.js",
14
+ "module": "./dist/index.js",
15
+ "types": "./dist/index.d.ts",
16
+ "files": [
17
+ "dist",
18
+ "package.json"
19
+ ],
20
+ "scripts": {
21
+ "build": "tsx ./scripts/compile-prod.ts",
22
+ "check-types": "tsc --noEmit",
23
+ "clean": "rimraf ./dist",
24
+ "dev": "tsx ./scripts/compile-dev.ts",
25
+ "lint": "eslint .",
26
+ "test": "vitest run --passWithNoTests",
27
+ "prepublishOnly": "pnpm run build"
28
+ },
29
+ "dependencies": {},
30
+ "devDependencies": {
31
+ "@vanya2h/eslint-config": "workspace:*",
32
+ "@vanya2h/internal": "workspace:*",
33
+ "@vanya2h/typescript-config": "workspace:*",
34
+ "rimraf": "^6.0.1",
35
+ "tsup": "^8.3.6",
36
+ "tsx": "^4.19.2",
37
+ "vitest": "^3.0.5"
38
+ },
39
+ "publishConfig": {
40
+ "access": "public",
41
+ "registry": "https://registry.npmjs.org"
42
+ }
43
+ }