ironnotify-js/package.json

51 lines
1.2 KiB
JSON

{
"name": "@ironservices/notify",
"version": "0.1.0",
"description": "IronNotify SDK for JavaScript/TypeScript - Event notifications and alerts",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs && npm run build:types",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.types.json",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"ironnotify",
"notifications",
"alerts",
"events",
"real-time",
"websocket"
],
"author": "IronServices",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/IronServices/ironnotify-js.git"
},
"homepage": "https://www.ironnotify.com",
"bugs": {
"url": "https://github.com/IronServices/ironnotify-js/issues"
},
"devDependencies": {
"typescript": "^5.3.0"
},
"engines": {
"node": ">=16.0.0"
}
}