-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 948 Bytes
/
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
{
"name": "pinyin-telegram",
"version": "1.0.0",
"description": "A Telegram bot to convert between Pinyin with tone marks and Pinyin with tone numbers.",
"keywords": [
"bot",
"cangjie",
"chinese",
"hanzi",
"mandarin",
"pinyin",
"telegram"
],
"homepage": "https://github.com/pepebecker/pinyin-telegram#readme",
"bugs": {
"url": "https://github.com/pepebecker/pinyin-telegram/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pepebecker/pinyin-telegram.git"
},
"license": "MIT",
"author": "Pepe Becker <[email protected]> (http://pepebecker.com)",
"files": [],
"main": "index.js",
"scripts": {
"deploy": "pm2 deploy ecosystem.config.js production",
"start": "node index.js",
"watch": "nodemon index.js"
},
"dependencies": {
"pinyin-bot-core": "^1.39.0",
"telegraf": "^3.33.3"
},
"devDependencies": {
"nodemon": "^1.19.4"
}
}