Quick-fix
All checks were successful
Publish to NPM / build-and-publish (release) Successful in 34s
Setup testing environment and test the code / build (push) Successful in 1m30s

This commit is contained in:
2026-04-08 16:37:32 +02:00
parent 07d30f7e83
commit 54d466fb27
2 changed files with 19 additions and 1 deletions

View File

@@ -1,8 +1,25 @@
{
"name": "@chatenium/chatenium-sdk",
"version": "1.0.1",
"version": "1.0.2",
"description": "A library for interacting with the Chatenium API",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./core/*": "./dist/core/*.js",
"./services/*": "./dist/services/*.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "vitest run",

View File

@@ -4,6 +4,7 @@
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"strict": true,
"skipLibCheck": true,
"outDir": "dist"