billsdk 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/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # Billsdk
2
+
3
+ This package name is reserved.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install billsdk
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```typescript
14
+ import { billsdk } from "billsdk";
15
+
16
+ console.log(billsdk());
17
+ ```
18
+
19
+ ## License
20
+
21
+ MIT
22
+
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Billsdk - Reserved package
3
+ * @packageDocumentation
4
+ */
5
+ declare const version = "0.0.1";
6
+ declare function billsdk(): string;
7
+
8
+ export { billsdk, version };
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Billsdk - Reserved package
3
+ * @packageDocumentation
4
+ */
5
+ declare const version = "0.0.1";
6
+ declare function billsdk(): string;
7
+
8
+ export { billsdk, version };
package/dist/index.js ADDED
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
21
+ var index_exports = {};
22
+ __export(index_exports, {
23
+ billsdk: () => billsdk,
24
+ version: () => version
25
+ });
26
+ module.exports = __toCommonJS(index_exports);
27
+ var version = "0.0.1";
28
+ function billsdk() {
29
+ return "Billsdk package reserved";
30
+ }
31
+ // Annotate the CommonJS export names for ESM import in node:
32
+ 0 && (module.exports = {
33
+ billsdk,
34
+ version
35
+ });
36
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["/**\n * Billsdk - Reserved package\n * @packageDocumentation\n */\n\nexport const version = \"0.0.1\";\n\nexport function billsdk(): string {\n return \"Billsdk package reserved\";\n}\n\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKO,IAAM,UAAU;AAEhB,SAAS,UAAkB;AAChC,SAAO;AACT;","names":[]}
package/dist/index.mjs ADDED
@@ -0,0 +1,10 @@
1
+ // src/index.ts
2
+ var version = "0.0.1";
3
+ function billsdk() {
4
+ return "Billsdk package reserved";
5
+ }
6
+ export {
7
+ billsdk,
8
+ version
9
+ };
10
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["/**\n * Billsdk - Reserved package\n * @packageDocumentation\n */\n\nexport const version = \"0.0.1\";\n\nexport function billsdk(): string {\n return \"Billsdk package reserved\";\n}\n\n"],"mappings":";AAKO,IAAM,UAAU;AAEhB,SAAS,UAAkB;AAChC,SAAO;AACT;","names":[]}
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "billsdk",
3
+ "version": "0.0.1",
4
+ "description": "Billsdk - Reserved package",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": ["dist", "README.md"],
16
+ "scripts": {
17
+ "build": "tsup",
18
+ "dev": "tsup --watch",
19
+ "lint": "biome lint src/",
20
+ "lint:fix": "biome lint --write src/",
21
+ "typecheck": "tsc --noEmit"
22
+ },
23
+ "keywords": ["billsdk"],
24
+ "author": "Commet Team",
25
+ "license": "MIT",
26
+ "devDependencies": {
27
+ "@types/node": "24.10.1",
28
+ "tsup": "8.5.1",
29
+ "typescript": "5.9.3"
30
+ },
31
+ "peerDependencies": {
32
+ "typescript": ">=5.0.0"
33
+ },
34
+ "engines": {
35
+ "node": ">=18.0.0"
36
+ },
37
+ "publishConfig": {
38
+ "access": "public"
39
+ }
40
+ }
41
+