UNPKG

@convex-dev/twilio

Version:

Convex component for sending/receiving SMS messages with Twilio.

90 lines (89 loc) 3.15 kB
{ "name": "@convex-dev/twilio", "description": "Convex component for sending/receiving SMS messages with Twilio.", "version": "0.2.1", "type": "module", "repository": "github:get-convex/twilio", "homepage": "https://github.com/get-convex/twilio#readme", "bugs": { "email": "support@convex.dev", "url": "https://github.com/get-convex/twilio/issues" }, "license": "Apache-2.0", "keywords": [ "convex", "twilio", "component" ], "scripts": { "dev": "run-p -r 'dev:*'", "dev:backend": "convex dev --typecheck-components", "dev:frontend": "cd example && vite --clearScreen false", "dev:build": "chokidar 'tsconfig*.json' 'src/**/*.ts' -i '**/*.test.ts' -c 'convex codegen --component-dir ./src/component && npm run build' --initial", "predev": "npm run dev:backend -- --until-success", "clean": "rm -rf dist *.tsbuildinfo", "build": "tsc --project ./tsconfig.build.json", "typecheck": "tsc --noEmit && tsc -p example/convex", "lint": "eslint .", "all": "run-p -r 'dev:*' 'test:watch'", "test": "vitest run --typecheck", "test:watch": "vitest --typecheck --clearScreen false", "test:debug": "vitest --inspect-brk --no-file-parallelism", "test:coverage": "vitest run --coverage --coverage.reporter=text", "prepare": "npm run build", "alpha": "npm run clean && npm ci && run-p test lint typecheck && npm version prerelease --preid alpha && npm publish --tag alpha && git push --tags", "release": "npm run clean && npm ci && run-p test lint typecheck && npm version patch && npm publish && git push --tags", "version": "pbcopy <<<$npm_package_version; vim CHANGELOG.md && prettier -w CHANGELOG.md && git add CHANGELOG.md" }, "files": [ "dist", "src" ], "exports": { "./package.json": "./package.json", ".": { "types": "./dist/client/index.d.ts", "default": "./dist/client/index.js" }, "./test": "./src/test.ts", "./_generated/component.js": { "types": "./dist/component/_generated/component.d.ts" }, "./convex.config": { "types": "./dist/component/convex.config.d.ts", "default": "./dist/component/convex.config.js" }, "./convex.config.js": { "types": "./dist/component/convex.config.d.ts", "default": "./dist/component/convex.config.js" } }, "peerDependencies": { "convex": "^1.24.8" }, "devDependencies": { "@edge-runtime/vm": "5.0.0", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "^9.38.0", "@types/node": "20.19.24", "@typescript-eslint/eslint-plugin": "^8.46.2", "@typescript-eslint/parser": "^8.46.2", "chokidar-cli": "3.0.0", "convex": "1.29.0", "convex-test": "^0.0.38", "eslint": "^9.38.0", "eslint-plugin-react-hooks": "^7.0.1", "eslint-plugin-react-refresh": "^0.4.24", "globals": "^16.4.0", "npm-run-all2": "8.0.4", "prettier": "^3.6.2", "typescript": "^5.9.3", "typescript-eslint": "^8.46.2", "vitest": "^3.2.4" }, "types": "./dist/client/index.d.ts", "module": "./dist/client/index.js", "dependencies": { "convex-helpers": "^0.1.106" } }