-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.76 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
74
75
76
77
{
"name": "telegraf-wikibase",
"version": "0.13.0",
"description": "Telegraf Middleware to use Wikibase entities (like Wikidata ones) in your users language",
"keywords": [
"telegraf",
"grammy",
"wikibase",
"wikidata"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/EdJoPaTo/telegraf-wikibase.git"
},
"author": {
"name": "EdJoPaTo",
"email": "telegraf-wikibase-npm-package@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": ">=18"
},
"dependencies": {
"@edjopato/datastore": "^0.7.0",
"array-filter-unique": "^3.0.2",
"js-yaml": "^4.0.0",
"tableize-object": "^0.1.0",
"wikibase-sdk": "^9.0.5",
"wikidata-entity-reader": "^4.0.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^7.0.0",
"@types/js-yaml": "^4.0.0",
"@types/node": "^18.19.3",
"c8": "^10.1.2",
"del-cli": "^6.0.0",
"grammy": "^1.2.0",
"telegraf": "^4.0.0",
"typescript": "^5.7.2",
"xo": "^0.59.3"
},
"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": "warn",
"unicorn/prevent-abbreviations": "off"
},
"overrides": [
{
"files": [
"**/*.test.*",
"**/test.*"
],
"rules": {
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/prefer-readonly-parameter-types": "off",
"n/no-unsupported-features/es-syntax": "off",
"n/no-unsupported-features/node-builtins": "off"
}
}
]
}
}