-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.01 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
{
"name": "yaml-yugi-load-output-pipeline",
"version": "0.0.1",
"repository": "https://github.com/DawnbrandBots/yaml-yugi",
"author": "Kevin Lu",
"license": "AGPL-3.0-or-later",
"private": true,
"scripts": {
"load": "ts-node src/load.ts",
"check-for-missing-fake-password": "ts-node src/assignments/check-for-missing.ts",
"check-for-missing-names": "ts-node src/check-for-missing-names.ts",
"check-for-ygoresources-discrepancies": "ts-node src/check-for-ygoresources-discrepancies.ts data/cards",
"format:check": "yarn prettier --check 'src/**/*.{js,ts}'",
"lint": "eslint 'src/**/*.ts'"
},
"engines": {
"node": ">=22",
"yarn": "1.22.x"
},
"dependencies": {
"@opensearch-project/opensearch": "^2.13.0",
"got": "^11.8.6",
"htmlparser2": "^9.1.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@alphakretin/essentials": "^7.0.0",
"@types/js-yaml": "^4.0.9"
},
"eslintConfig": {
"extends": "@alphakretin"
},
"prettier": "@alphakretin/essentials"
}