-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.07 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.07 KB
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
{
"author": "Delemangi",
"bugs": {
"url": "https://github.com/finki-hub/services-scraper/issues"
},
"dependencies": {
"cheerio": "^1.2.0",
"discord.js": "^14.26.4",
"domhandler": "^6.0.1",
"finki-auth": "^2.0.1",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"zod": "^4.4.1"
},
"description": "FINKI Scraper",
"devDependencies": {
"esbuild": "^0.28.0",
"eslint": "^9.39.2",
"eslint-config-imperium": "^3.6.0",
"rimraf": "^6.1.3",
"typescript": "~6.0.3"
},
"engines": {
"node": ">=24.10.0"
},
"homepage": "https://github.com/finki-hub/services-scraper",
"license": "MIT",
"main": "dist/index.js",
"name": "services-scraper",
"repository": {
"type": "git",
"url": "git+https://github.com/finki-hub/services-scraper.git"
},
"scripts": {
"build": "npm run clean && node esbuild.config.js",
"check": "tsc --noEmit",
"clean": "rimraf dist",
"format": "eslint . --cache --fix",
"lint": "eslint . --cache",
"start": "node dist/index.js"
},
"type": "module",
"version": "1.0.0"
}