-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.69 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
78
79
80
81
82
83
84
85
86
{
"name": "misaka-telegram-bot",
"version": "1.0.0",
"description": "",
"//": "这个项目有配 ci,请通过 ci 部署",
"scripts": {
"start": "rollup -c && node ./dist/index.js --enable-source-maps",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"lint": "eslint --fix ./src/**/*.ts",
"build:js": "rollup -c",
"build": "npm run build:js && docker build -t misakakumomi/telegram-bot .",
"prepare": "husky install"
},
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.14.5",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-object-rest-spread": "7.14.5",
"@babel/preset-env": "7.14.5",
"@babel/preset-typescript": "7.14.5",
"@eslint/js": "^9.14.0",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "19.0.0",
"@rollup/plugin-dynamic-import-vars": "^1.4.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "13.0.0",
"@types/js-yaml": "^4.0.3",
"@types/json-stringify-safe": "^5.0.0",
"@types/lodash-es": "^4.17.4",
"@types/node": "^18.14.6",
"@types/oauth": "^0.9.1",
"@types/prettyjson": "^0.0.30",
"@types/promise-retry": "^1.1.3",
"@types/qs": "^6.9.6",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0",
"globals": "^15.12.0",
"husky": "^7.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"rollup": "2.51.2",
"telegram-typings": "^5.0.0",
"ts-node": "^10.0.0",
"typescript": "4.7.4",
"typescript-eslint": "^8.13.0"
},
"dependencies": {
"@atproto/api": "^0.13.15",
"@microsoft/applicationinsights-web": "^2.7.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-url": "^6.0.0",
"applicationinsights": "^2.1.7",
"core-js": "^3.14.0",
"execa": "^5.1.1",
"fs-jetpack": "^4.1.0",
"git-commit-info": "^2.0.1",
"got": "^11.8.2",
"hpagent": "^0.1.2",
"https-proxy-agent": "^5.0.0",
"js-yaml": "^3.14.1",
"json-stringify-safe": "^5.0.1",
"json5": "^2.2.0",
"lodash-es": "^4.17.21",
"mem": "^8.1.1",
"p-queue": "^7.1.0",
"prettyjson": "^1.2.1",
"promise-retry": "^2.0.1",
"qs": "^6.10.1",
"regenerator-runtime": "^0.13.7",
"socks-proxy-agent": "^6.1.0",
"telegraf": "^3.38.0",
"telegraf-throttler": "^0.3.0"
},
"lint-staged": {
"*.ts": "npm run lint"
}
}