-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (59 loc) · 1.93 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
{
"name": "telegram-rss",
"version": "1.0.1",
"description": "A simple converter Telegram channel to RSS Feeds",
"main": "dist/cjs/telegram-rss.js",
"module": "dist/mjs/telegram-rss.js",
"exports": {
".": {
"import": "./dist/mjs/telegram-rss.js",
"require": "./dist/cjs/telegram-rss.js"
}
},
"scripts": {
"start": "npm run dev-node",
"removedir": "node -e \"var fs = require('fs'); try{process.argv.slice(1).map((fpath) => fs.rmdirSync(fpath, { recursive: true }))}catch(err){console.log(`Dist not found`)}; process.exit(0);\"",
"build-all": "tsc -p tsconfig-mjs.json && tsc -p tsconfig-cjs.json && echo {\"type\": \"commonjs\"}>dist\\cjs\\package.json && echo {\"type\": \"module\"}>dist\\mjs\\package.json",
"build": "npm run removedir dist && npm run build-all",
"build-dev":"npm run removedir public && tsc -p tsconfig.json",
"dev-node":"nodemon -e js,ts --watch src --watch test --exec \"npm run build-dev && node public/test/server.js\"",
"dev-node-esm":"nodemon -e js,ts --watch src --watch test --exec \"npm run build-dev && node public/test/server-mjs.js\"",
"dev":"npm run dev-node",
"test": "npm run dev-node"
},
"files": [
"dist/",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nuzulul/telegram-rss.git"
},
"keywords": [
"telegram",
"telegram-bot",
"telegram-api",
"node-js",
"telegram-rss",
"telegram-scraper",
"telegram-channel-scraper",
"telegram-channel-rss",
"telegram-to-rss",
"telegram-channel-to-rss",
"telegram-rss-generator"
],
"author": "Nuzulul Zulkarnain",
"license": "MIT",
"bugs": {
"url": "https://github.com/nuzulul/telegram-rss/issues"
},
"homepage": "https://github.com/nuzulul/telegram-rss#readme",
"devDependencies": {
"nodemon": "^3.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"telegram-scraper": "^1.0.1"
}
}