This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
74 lines (74 loc) · 2.6 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
{
"name": "monster-hunter-now-events",
"description": "A tool that auto-generates calendar events for Monster Hunter Now by scraping web news articles, processing them with AI, and creating a convenient calendar subscription.",
"version": "1.7.0",
"author": "Sean Kennedy <[email protected]>",
"bugs": {
"url": "https://github.com/seriouslysean/monster-hunter-now-events/issues"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.6.0"
},
"dependencies": {
"axios": "^1.5.1",
"commander": "^11.0.0",
"date-fns": "^2.30.0",
"node-html-parser": "^6.1.10",
"nodemon": "^3.0.1",
"openai": "^4.11.0",
"rollbar": "^2.26.2",
"winston": "^3.11.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"dotenv": "^16.3.1",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"express": "^4.18.2",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"homepage": "https://github.com/seriouslysean/monster-hunter-now-events#readme",
"keywords": [
"calendar",
"hacktoberfest",
"ics",
"javascript",
"monster-hunter",
"monster-hunter-now",
"nodejs",
"openai",
"web-scraping"
],
"license": "MIT",
"main": "index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/seriouslysean/monster-hunter-now-events.git"
},
"scripts": {
"_opts:ts-node": "NODE_OPTIONS=\"--loader ts-node/esm\" ts-node -r dotenv/config",
"_lint:format": "prettier src --write",
"generate:events-json": "npm run _opts:ts-node -- ./src/generate-events-json.ts",
"generate:events-ics": "npm run _opts:ts-node -- index.ts",
"lint:fix": "prettier --write --list-different src && npm run lint:ts --fix",
"lint:ts": "eslint --ext .ts --ignore-path .gitignore src/*",
"lint:prettier": "prettier --check src",
"lint": "npm run lint:ts && npm run lint:prettier",
"start": "npm run fetch:all-articles && npm run generate:events-json && npm run generate:events-ics",
"fetch:all-articles": "npm run _opts:ts-node -- ./tools/fetch-all-articles.ts",
"fetch:article": "npm run _opts:ts-node -- ./tools/fetch-article.ts",
"test:logger": "npm run _opts:ts-node -- ./tools/test-logger.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "npm run _opts:ts-node -- ./server.ts"
},
"type": "module"
}