flense 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.
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Flense API Client
3
+ */
4
+ export interface FlenseConfig {
5
+ apiKey: string;
6
+ baseUrl?: string;
7
+ }
8
+ export declare class Flense {
9
+ private config;
10
+ constructor(config: FlenseConfig);
11
+ }
12
+ export default Flense;
13
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,MAAM,WAAW,YAAY;IAC3B,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,qBAAa,MAAM;IACjB,OAAO,CAAC,MAAM,CAAe;gBAEjB,MAAM,EAAE,YAAY;CAQjC;AAED,eAAe,MAAM,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Flense API Client
3
+ */
4
+ export class Flense {
5
+ config;
6
+ constructor(config) {
7
+ this.config = {
8
+ baseUrl: "https://api.flense.dev",
9
+ ...config,
10
+ };
11
+ }
12
+ }
13
+ export default Flense;
14
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAOH,MAAM,OAAO,MAAM;IACT,MAAM,CAAe;IAE7B,YAAY,MAAoB;QAC9B,IAAI,CAAC,MAAM,GAAG;YACZ,OAAO,EAAE,wBAAwB;YACjC,GAAG,MAAM;SACV,CAAC;IACJ,CAAC;CAGF;AAED,eAAe,MAAM,CAAC"}
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "flense",
3
+ "version": "0.0.1",
4
+ "description": "Official Flense API client library",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsc",
21
+ "dev": "tsc --watch",
22
+ "check-types": "tsc --noEmit",
23
+ "typecheck": "tsc --noEmit",
24
+ "lint": "eslint . --max-warnings 0",
25
+ "prepublishOnly": "pnpm run build"
26
+ },
27
+ "keywords": [
28
+ "flense",
29
+ "api",
30
+ "client"
31
+ ],
32
+ "author": "",
33
+ "license": "MIT",
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "https://github.com/Boushell/flense.git"
37
+ },
38
+ "dependencies": {},
39
+ "devDependencies": {
40
+ "@repo/eslint-config": "workspace:*",
41
+ "@repo/typescript-config": "workspace:*",
42
+ "@types/node": "^22.15.3",
43
+ "eslint": "^9.39.1",
44
+ "typescript": "5.9.2"
45
+ }
46
+ }