-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
53 lines (53 loc) · 1.61 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
{
"name": "obsidian-telegram-sync",
"version": "4.0.0",
"description": "Transfer messages and files from Telegram bot to Obsidian.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs && npm run post-build",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "node esbuild.config.mjs test && npm run post-build && node install-plugin.mjs",
"release-notes-check": "node release-notes.mjs check",
"build": "tsc -noEmit -skipLibCheck && npm run lint && node esbuild.config.mjs production && npm run post-build",
"post-build": "node post-build.mjs"
},
"keywords": [
"Telegram",
"Syncing",
"Messages",
"Transfer Files"
],
"author": "soberhacker",
"license": "GNU Affero General Public License v3.0",
"devDependencies": {
"@types/async": "^3.2.18",
"@types/linkify-it": "^3.0.2",
"@types/mime-types": "^2.1.1",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"obsidian": "latest",
"prettier": "latest",
"release-please": "^16.14.0",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@popperjs/core": "^2.11.7",
"@types/qrcode": "^1.5.0",
"compare-versions": "^6.1.0",
"linkify-it": "^4.0.1",
"mime-types": "^2.1.35",
"node-machine-id": "^1.1.12",
"node-telegram-bot-api": "^0.66.0",
"qrcode": "^1.5.3",
"telegram": "^2.25.11"
}
}