59 lines
1.3 KiB
JSON
59 lines
1.3 KiB
JSON
{
|
|
"name": "@larvit/smpp",
|
|
"version": "0.5.0",
|
|
"description": "SMPP 3.4 client and server for Node.js with the session layer built in: keepalive, reconnect, send window, long messages and delivery receipts",
|
|
"keywords": [
|
|
"esm",
|
|
"pdu",
|
|
"sms",
|
|
"smpp",
|
|
"typescript"
|
|
],
|
|
"homepage": "https://gitea.larvit.se/larvit/smpp-js",
|
|
"bugs": {
|
|
"url": "https://github.com/larvit/smpp-js/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://gitea.larvit.se/larvit/smpp-js.git"
|
|
},
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Mikael 'Lilleman' Göransson",
|
|
"email": "lilleman@larvit.se",
|
|
"url": "https://gitea.larvit.se/larvit/smpp-js"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --project tsconfig.build.json",
|
|
"lint": "eslint . && tsc --noEmit",
|
|
"prepack": "npm run build",
|
|
"test": "npm run lint && node --test test/*.test.ts",
|
|
"test:compiled": "tsc --project tsconfig.test.json && node --test dist-test/test/*.test.js"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "10.0.1",
|
|
"@larvit/log": "2.3.0",
|
|
"@types/node": "22.20.1",
|
|
"eslint": "10.9.1",
|
|
"smpp": "0.6.0-rc.4",
|
|
"typescript": "6.0.3",
|
|
"typescript-eslint": "8.68.0"
|
|
}
|
|
}
|