-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.66 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
{
"name": "d2pt.js",
"version": "1.0.9",
"description": "A Node.js Dota2ProTracker Scraper",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.mjs",
"types": "./lib/index.d.ts"
}
},
"types": "./lib/index.d.ts",
"directories": {
"example": "examples",
"lib": "lib"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./lib",
"test": "jest",
"watch": "npm run build -- --watch",
"compile": "tsup ./src/index.ts --format cjs,esm --dts --outDir ./lib",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags && rm -rf build/temp"
},
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"keywords": [
"dota2protracker",
"stratz",
"dota",
"dota2",
"scraper"
],
"author": "GBRL DEV (https://github.com/gabrielcstr)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gabrielcstr/d2pt.js/issues"
},
"homepage": "https://github.com/gabrielcstr/d2pt.js#readme",
"dependencies": {
"puppeteer": "^22.15.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"puppeteer-select": "^1.0.3"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^20.14.5",
"dotenv": "^16.4.5",
"husky": "^9.0.11",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GabrielCSTR/d2pt.js.git"
}
}