-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 737 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:wordle": "eslint Wordle_Solver/Wordle_Solver.js",
"lint:fix": "eslint . --fix",
"check:wordle-solutions": "node Wordle_Solver/scripts/check-nyt-solutions.mjs",
"update:poople-words": "node Poople_Solver/scripts/update-poople-words.mjs",
"build:mapping": "cd URL_converter && python3 scripts/build_mapping.py",
"build:classic-crosswalk": "cd URL_converter && python3 scripts/build_classic_crosswalk.py",
"test": "cd URL_converter && node scripts/test-converter.mjs"
},
"dependencies": {
"eslint": "^10.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint-plugin-unicorn": "^63.0.0",
"globals": "^17.3.0"
}
}