-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"name": "fcn-scraper",
"version": "1.0.0",
"description": "Scraper automatisé pour le calendrier des matchs du FC Nantes",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"scrape": "tsx src/index.ts",
"clean": "rm -rf dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["fc-nantes", "football", "calendar", "ics", "scraping", "puppeteer"],
"author": "PikPakPik",
"license": "MIT",
"packageManager": "pnpm@10.12.4",
"dependencies": {
"@types/puppeteer": "^7.0.4",
"cheerio": "^1.1.2",
"ics": "^3.8.1",
"moment": "^2.30.1",
"puppeteer": "^24.15.0"
},
"devDependencies": {
"@types/cheerio": "^1.0.0",
"@types/node": "^24.1.0",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "^5.8.3"
}
}