-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 1.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"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": "[email protected]",
"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": "^7.0.0",
"@types/node": "^18.18.13",
"c8": "^10.1.2",
"del-cli": "^6.0.0",
"grammy": "^1.10.1",
"typescript": "^5.5.2",
"xo": "^0.60.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",
"n/no-unsupported-features/es-syntax": "off",
"n/no-unsupported-features/node-builtins": "off"
}
}
]
}
}