@createiq/backend 1.0.0

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/index.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './client'
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "@createiq/backend",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "license": "UNLICENSED",
6
+ "main": "dist/index.cjs",
7
+ "module": "dist/index.js",
8
+ "typings": "dist/index.d.ts",
9
+ "engines": {
10
+ "node": ">=20.0.0"
11
+ },
12
+ "devDependencies": {
13
+ "@biomejs/biome": "1.9.4",
14
+ "@tsconfig/recommended": "1.0.8",
15
+ "tsup": "8.3.6",
16
+ "typescript": "5.7.3"
17
+ },
18
+ "scripts": {
19
+ "build": "tsup"
20
+ }
21
+ }
@@ -0,0 +1 @@
1
+ 94541afb89a631da8a1566ac81cf86b43e45ffacbb1c83c28e6ad844a43ee43b
package/tsconfig.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "extends": "@tsconfig/recommended/tsconfig.json",
3
+ "compilerOptions": {
4
+ "target": "esnext",
5
+ "module": "esnext",
6
+ "declaration": true,
7
+ "declarationDir": "dist",
8
+ "outDir": "dist",
9
+ "strict": true,
10
+ "moduleResolution": "bundler",
11
+ "esModuleInterop": true,
12
+ "resolveJsonModule": true,
13
+ "skipLibCheck": true,
14
+ "forceConsistentCasingInFileNames": true
15
+ }
16
+ }
package/tsup.config.ts ADDED
@@ -0,0 +1,14 @@
1
+ import * as path from 'node:path'
2
+ import { defineConfig } from 'tsup'
3
+
4
+ export default defineConfig({
5
+ name: '@createiq/backend',
6
+ entry: ['index.ts'],
7
+ format: ['esm', 'cjs'],
8
+ target: 'esnext',
9
+ outDir: 'dist',
10
+ clean: true,
11
+ dts: true,
12
+ sourcemap: true,
13
+ tsconfig: path.resolve(__dirname, 'tsconfig.json'),
14
+ })