@grammyjs/stateless-question
Version:
Create stateless questions to Telegram users working in privacy mode
72 lines (71 loc) • 1.51 kB
JSON
{
"name": "@grammyjs/stateless-question",
"version": "4.0.0",
"description": "Create stateless questions to Telegram users working in privacy mode",
"keywords": [
"grammy",
"stateless",
"question",
"reply",
"privacy",
"mode",
"message"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/grammyjs/stateless-question.git"
},
"author": {
"name": "EdJoPaTo",
"email": "stateless-question-telegram-typescript@edjopato.de",
"url": "https://edjopato.de"
},
"scripts": {
"build": "del-cli dist && tsc",
"prepack": "npm run build",
"test": "tsc --sourceMap && xo && c8 --all node --test --enable-source-maps"
},
"type": "module",
"engines": {
"node": ">=14"
},
"peerDependencies": {
"grammy": "^1.10.1"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"@types/node": "^18.18.13",
"c8": "^9.0.0",
"del-cli": "^5.0.0",
"grammy": "^1.10.1",
"typescript": "^5.0.2",
"xo": "^0.58.0"
},
"files": [
"dist",
"!*.test.*",
"!test.*"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"xo": {
"rules": {
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/prefer-readonly-parameter-types": "off",
"unicorn/prevent-abbreviations": "off"
},
"overrides": [
{
"files": [
"**/*.test.*",
"**/test.*"
],
"rules": {
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/prefer-readonly-parameter-types": "off"
}
}
]
}
}