-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
9 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1 @@ | ||
# numia-engage-sdk | ||
|
||
To install dependencies: | ||
|
||
```bash | ||
bun install | ||
``` | ||
|
||
To run: | ||
|
||
```bash | ||
bun run src/index.ts | ||
``` | ||
|
||
This project was created using `bun init` in bun v1.1.27. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"name": "numia-engage-sdk", | ||
"name": "@numia/engage-sdk", | ||
"version": "0.0.0", | ||
"type": "module", | ||
"main": "./dist/index.cjs", | ||
"module": "./dist/index.js", | ||
|
@@ -12,7 +13,8 @@ | |
"scripts": { | ||
"lint": "biome lint .", | ||
"typecheck": "tsc --noEmit", | ||
"build": "bun build.ts" | ||
"build": "bun build.ts", | ||
"release": "npm run build && bunx np" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "1.9.4", | ||
|
@@ -35,6 +37,9 @@ | |
"type": "git", | ||
"url": "git+https://github.com/numiadata/numia-engage-sdk.git" | ||
}, | ||
"bugs": "https://github.com/numiadata/numia-engage-sdk/issues", | ||
"author": "Marc Höffl <[email protected]>" | ||
"bugs": { | ||
"url": "https://github.com/numiadata/numia-engage-sdk/issues" | ||
}, | ||
"author": "Marc Höffl <[email protected]>", | ||
"description": "Numia Engage Javascript/Typescript SDK" | ||
} |