49 lines
956 B
JSON
49 lines
956 B
JSON
{
|
|
"name": "textme-closebot-channel",
|
|
"version": "1.0.0",
|
|
"description": "Clawdbot external channel plugin for TextMe messaging",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc --watch",
|
|
"clean": "rm -rf dist",
|
|
"dev": "tsx src/index.ts",
|
|
"start": "node dist/index.js",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"keywords": [
|
|
"clawdbot",
|
|
"closebot",
|
|
"channel",
|
|
"plugin",
|
|
"textme",
|
|
"sms",
|
|
"messaging"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"dependencies": {
|
|
"textme-unofficial-api": "file:../textme-integration"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.0",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|