-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.1 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
{
"name": "yaml-yugi-limit-regulation",
"version": "0.0.1",
"repository": "https://github.com/DawnbrandBots/yaml-yugi-limit-regulation",
"author": "Kevin Lu",
"license": "AGPL-3.0-or-later",
"private": true,
"scripts": {
"download-tcg": "cd data/tcg && ts-node ../../src/tcg-extract-transform.ts",
"download-ocg": "cd data/ocg && ts-node ../../src/ocg-extract-transform.ts",
"download-ocg-ae": "cd data/ocg-ae && ts-node ../../src/ocg-extract-transform.ts --region ae",
"download-ocg-cn": "cd data/ocg-cn && ts-node ../../src/ocg-cn-extract-transform.ts",
"download-rush": "cd data/rush && ts-node ../../src/rush-extract-transform.ts",
"transform-md": "cd data/master-duel && ts-node ../../src/masterduel-extract-transform.ts"
},
"engines": {
"node": ">=22",
"yarn": "1.22.x"
},
"dependencies": {
"commander": "^13.0.0",
"css-select": "^5.1.0",
"got": "^11.8.6",
"htmlparser2": "^9.1.0"
},
"devDependencies": {
"@alphakretin/essentials": "^7.0.0"
},
"eslintConfig": {
"extends": "@alphakretin"
},
"prettier": "@alphakretin/essentials"
}