58 lines
1.2 KiB
JSON
58 lines
1.2 KiB
JSON
{
|
|
"name": "textme-unofficial-api",
|
|
"version": "0.1.0",
|
|
"description": "Unofficial TypeScript API client for TextMe messaging service",
|
|
"type": "module",
|
|
"main": "./dist/src/index.js",
|
|
"module": "./dist/src/index.js",
|
|
"types": "./dist/src/index.d.ts",
|
|
"bin": {
|
|
"textme": "./dist/cli/index.js"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/src/index.js",
|
|
"types": "./dist/src/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"cli",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc --watch",
|
|
"clean": "rm -rf dist",
|
|
"prepublishOnly": "npm run clean && npm run build",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "eslint src --ext .ts"
|
|
},
|
|
"keywords": [
|
|
"textme",
|
|
"sms",
|
|
"messaging",
|
|
"api",
|
|
"unofficial",
|
|
"websocket"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"dependencies": {
|
|
"commander": "^12.1.0",
|
|
"node-fetch": "^3.3.2",
|
|
"qrcode-terminal": "^0.12.0",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.0",
|
|
"@types/qrcode-terminal": "^0.12.2",
|
|
"@types/ws": "^8.5.10",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|