Skip to content

Built for people who want to own their automations. Join the waitlist for an invite.

Package listing

@kody/twilio

package.json

44 lines · 1.2 KB · JSON
{
	"name": "@kody/twilio",
	"version": "1.0.0",
	"license": "MIT",
	"private": false,
	"description": "Twilio helpers for account lookup, incoming numbers, message logs, and dry-run SMS by default.",
	"type": "module",
	"exports": {
		".": "./src/index.ts",
		"./account": "./src/account.ts",
		"./config": "./src/config.ts",
		"./guide": "./src/guide.ts",
		"./incoming-numbers": "./src/incoming-numbers.ts",
		"./messages": "./src/messages.ts",
		"./request": "./src/request.ts",
		"./send-message": "./src/send-message.ts",
		"./smoke-test": "./src/smoke-test.ts"
	},
	"files": [
		"src",
		"README.md",
		"LICENSE",
		"community-icon.svg"
	],
	"scripts": {
		"test": "node --experimental-strip-types --test src/*.test.ts"
	},
	"kody": {
		"id": "twilio",
		"name": "Twilio",
		"description": "Look up Twilio accounts, incoming numbers, and SMS logs, and send messages as a dry-run by default.",
		"logo": "./community-icon.svg",
		"tags": [
			"twilio",
			"sms",
			"messaging",
			"phone",
			"account-sid",
			"auth-token",
			"dry-run"
		],
		"searchText": "twilio sms send message incoming phone numbers message logs account lookup twilioAccountSid twilioAuthToken MessagingServiceSid api.twilio.com dryRun confirm secret-backed not oauth account sid auth token"
	}
}