-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 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
{
"name": "lscontests",
"version": "2.7.1",
"description": "A tool to get information about the contests on each OJ",
"keywords": [
"cli",
"crawler",
"atcoder",
"codeforces",
"luogu",
"nowcoder",
"competitive-programming"
],
"repository": "https://github.com/StableAgOH/lscontests",
"bugs": "https://github.com/StableAgOH/lscontests/issues",
"author": "StableAgOH <stagoh17@gmail.com>",
"license": "GPL-3.0",
"main": "./dist/index.js",
"bin": {
"lsct": "./dist/cli.js",
"lsct-s": "./dist/server-cli.js"
},
"files": [
"dist",
"public"
],
"scripts": {
"prebuild": "rimraf ./dist",
"build": "tsc -p src",
"clean": "rimraf ./dist ./docs ./node_modules",
"docs": "typedoc",
"lint": "eslint . && markdownlint .",
"lint:fix": "eslint . --fix && markdownlint . --fix",
"start": "tsx src/cli.ts",
"start-s": "tsx src/server.ts",
"vercel-dev": "vercel dev"
},
"dependencies": {
"await-lock": "^2.2.2",
"axios": "^1.6.1",
"axios-retry": "^4.5.0",
"cheerio": "^1.0.0-rc.12",
"commander": "^11.1.0",
"express": "^4.18.2",
"html-entities": "^2.4.0",
"ics": "^3.5.0",
"ioredis": "^5.3.2",
"lodash": "^4.17.21",
"pangu": "^4.0.7",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/lodash": "^4.14.201",
"@types/node": "^22.8.6",
"@types/pangu": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vercel/ncc": "^0.38.1",
"cpy-cli": "^5.0.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.53.0",
"markdownlint-cli": "^0.37.0",
"rimraf": "^6.0.1",
"tsx": "^4.1.1",
"typedoc": "^0.25.3",
"typedoc-plugin-extras": "^3.0.0",
"typescript": "^5.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}