-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "sudoku-grid-maker",
"version": "2.2.0",
"author": "MaoShizhong",
"description": "A playable sudoku grid maker (not generator). Supports pencil marks and grid history for undo/redo.",
"repository": {
"type": "git",
"url": "git+https://github.com/MaoShizhong/sudoku-grid-maker.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist/*"
],
"engines": {
"node": ">=17"
},
"keywords": [
"sudoku",
"sudoku maker",
"generate",
"puzzle",
"game",
"grid",
"board"
],
"scripts": {
"build": "tsc -p tsconfig.prod.json && ts-cleaner",
"format": "prettier --write",
"lint": "eslint .",
"prepublishOnly": "npx prettier --check . && npm run lint && npm run build",
"start": "node ./dist/index.js",
"test": "jest --verbose ./src/tests"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"eslint": "^8.57.0",
"globals": "^15.8.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"ts-cleaner": "^1.0.5",
"ts-jest": "^29.1.5",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.0"
}
}