Files
SDK-TypeScript/package.json
chatenium 96a5e5896b
All checks were successful
Setup testing environment and test the code / build (push) Successful in 1m13s
Publish to NPM / build-and-publish (release) Successful in 33s
HotFix
2026-04-09 11:56:40 +02:00

47 lines
1.1 KiB
JSON

{
"name": "@chatenium/chatenium-sdk",
"version": "1.0.9",
"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",
"./domain/*": "./dist/domain/*.js",
"./mocks/*": "./dist/mocks/*.js",
"./storage/*": "./dist/storage/*.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test-unit": "vitest run --project unit",
"test-integration": "vitest run --project integration",
"test:watch": "vitest"
},
"devDependencies": {
"@types/node": "^25.5.2",
"typescript": "^5.5.3",
"vitest": "^4.1.2"
},
"private": false,
"dependencies": {
"@faker-js/faker": "^10.4.0",
"axios": "^1.14.0",
"dotenv": "^17.4.0",
"msw": "^2.12.14",
"uuid": "^13.0.0"
}
}