-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
107 lines (107 loc) · 3.3 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "node_rssbot",
"version": "0.11.0",
"description": "Another Telegram RSSBot in Node.js",
"main": "dist/source",
"engines": {
"node": ">16.13",
"npm": ">=7"
},
"scripts": {
"build": "del-cli dist && tsc && node tools/copy-assets.mjs",
"start": "cross-env NODE_PRODUCTION=true node dist/source/index.js",
"start-withsnapshot": "cross-env NODE_PRODUCTION=true node --heapsnapshot-signal=SIGUSR2 dist/source/index.js",
"start-docker": "node --heapsnapshot-signal=SIGUSR2 dist/source/index.js",
"dev": "node $NODE_DEBUG_OPTIONS dist/source/index",
"test": "cross-env RSSBOT_DB_PATH=test/test-data/test.db RSSBOT_TOKEN=1 npx jest --verbose",
"format": "eslint \"source/**/*.{js,ts}\" --fix && prettier \"**/*.{js,ts,json,md}\" --write",
"lint": "eslint \"source/**/*.{js,ts}\" && prettier -c \"**/*.{js,ts,json,md}\" && npm run lint-lockfile",
"lint-lockfile": "npx lockfile-lint --path package-lock.json --allowed-hosts npm yarn github.com --allowed-schemes \"https:\" \"git+https:\""
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fengkx/NodeRSSBot.git"
},
"keywords": [
"Telegram"
],
"author": "fengkx",
"license": "MIT",
"bugs": {
"url": "https://github.com/fengkx/NodeRSSBot/issues"
},
"homepage": "https://github.com/fengkx/NodeRSSBot#readme",
"dependencies": {
"@cjsa/clean-stack": "^4.2.0",
"@cjsa/escape-goat": "^4.0.0-cjsa.0",
"@sentry/node": "^8.37.1",
"camaro": "^6.2.3",
"cross-env": "^7.0.3",
"ejs": "^3.1.10",
"encoding": "^0.1.13",
"env-var": "^7.5.0",
"fastq": "^1.17.1",
"js-yaml": "^4.1.0",
"knex": "^3.1.0",
"make-fetch-happen": "^14.0.3",
"node-schedule": "^2.1.1",
"pg": "8.13.1",
"socks-proxy-agent": "^8.0.4",
"sqlite3": "^5.1.7",
"telegraf": "^4.16.3",
"telegraf-throttler": "^0.6.0",
"tunnel": "0.0.6",
"winston": "^3.16.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@types/create-test-server": "^3.0.5",
"@types/ejs": "^3.1.5",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/make-fetch-happen": "^10.0.4",
"@types/node": "^22.9.0",
"@types/node-schedule": "^2.1.7",
"@types/tunnel": "^0.0.7",
"@vercel/nft": "^0.27.5",
"create-test-server": "^3.0.1",
"del-cli": "^6.0.0",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"iconv-lite": "^0.6.3",
"jest": "^29.7.0",
"lockfile-lint": "^4.14.0",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"jest": {
"preset": "ts-jest/presets/js-with-ts",
"coveragePathIgnorePatterns": [
"<rootDir>/test/test-data/*"
]
},
"overrides": {
"make-fetch-happen": "$make-fetch-happen",
"has": "npm:@nolyfill/has@^1",
"side-channel": "npm:@nolyfill/side-channel@^1",
"create-test-server": {
"create-cert": {
"pem": "^1.14.8"
}
},
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"isarray": "npm:@nolyfill/isarray@^1",
"typedarray": "npm:@nolyfill/typedarray@^1"
}
}