46 lines
943 B
JSON
46 lines
943 B
JSON
{
|
|
"name": "textnow-unofficial-api",
|
|
"version": "0.1.0",
|
|
"description": "Unofficial TypeScript API client for TextNow messaging service",
|
|
"type": "module",
|
|
"main": "./dist/src/index.js",
|
|
"module": "./dist/src/index.js",
|
|
"types": "./dist/src/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/src/index.js",
|
|
"types": "./dist/src/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"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": [
|
|
"textnow",
|
|
"sms",
|
|
"messaging",
|
|
"api",
|
|
"unofficial"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.0",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|