-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.91 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
75
76
77
78
79
{
"name": "infinityedge",
"version": "1.0.0",
"license": "GPL-3.0-only",
"engines": {
"node": ">=16.0.0"
},
"engineStrict": true,
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"homepage": "https://github.com/Hi-Ray/infinityedge#readme",
"bugs": {
"url": "https://github.com/Hi-Ray/infinityedge/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Hi-Ray/infinityedge"
},
"contributors": [
{
"name": "Ray",
"email": "dev@hiray.me",
"url": "https://hiray.me/"
},
{
"name": "BangingHeads",
"url": "https://www.lolrankbot.com"
}
],
"main": "./dist/src",
"scripts": {
"build": "tsc -p .",
"coverage": "vitest run --coverage",
"dev": "ts-node-dev src",
"dev:scraper": "ts-node-dev ./src/scraper.ts",
"dev:sync": "ts-node-dev ./src/sync.ts",
"lint": "eslint src/**/*.ts --quiet --fix",
"lint-test": "eslint src/**/*.ts",
"start": "node ./dist/src/index.js",
"start:scraper": "node ./dist/scraper.js",
"test": "vitest",
"update-deps": "npx npm-check-updates -u"
},
"devDependencies": {
"@types/download": "^8.0.2",
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.4.2",
"@types/ssh2-sftp-client": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"dependencies": {
"axios": "^1.4.0",
"cheerio": "^1.0.0-rc.12",
"colorette": "^2.0.20",
"dotenv": "^16.3.1",
"download": "^8.0.0",
"finder": "^0.1.4",
"fs-extra": "^11.1.1",
"ssh2-sftp-client": "^9.1.0",
"tracer": "^1.1.6"
},
"packageManager": "yarn@1.22.19"
}