-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.77 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
{
"name": "wordle-solver",
"version": "0.0.1",
"description": "A clever algorithm and automated tool to solve the NYTimes daily Wordle puzzle game.",
"scripts": {
"build:clean": "rm -rf dist/*",
"build:compile": "tsc",
"build": "npm run fmt && npm run build:compile",
"clean": "npm run build:clean && rm -rf node_modules/",
"cli": "node dist/index.js",
"fmt": "prettier --write --log-level warn .",
"fmt:check": "prettier --check .",
"lint": "eslint __data__/ __tests__/ src/",
"test:unit": "jest",
"test": "npm run test:unit",
"ci:local": "npm run lint && npm run clean && npm install && npm run build && npm run test",
"prepare": "husky"
},
"keywords": [
"wordle",
"solver"
],
"author": "Peter Gordon <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/codergeek42/wordle-solver/issues"
},
"homepage": "https://github.com/codergeek42/wordle-solver#readme",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@tsconfig/node20": "^20.1.4",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.5",
"eslint": "^9.17.0",
"eslint-plugin-jest-extended": "^2.4.0",
"git-format-staged": "^3.1.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-extended-fs": "^1.0.3",
"jest-mock": "^29.7.0",
"jest-mock-console": "^2.0.0",
"jest-mock-extended": "^3.0.7",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript-eslint": "^8.19.0"
},
"dependencies": {
"lodash": "^4.17.21"
}
}