39 lines
1.7 KiB
JSON
39 lines
1.7 KiB
JSON
{
|
|
"name": "@tu-darmstadt/aupl-ss24-sudoku-solver",
|
|
"version": "1.0.0-dev.1",
|
|
"description": "A tool converting a given sudoku into DIMACS CNF to be solved with a SAT solver, and reverting the solution from the SAT solver back into an easy readable sudoku visualitsation",
|
|
"main": "dist/generateRules.js",
|
|
"types": "dist/types/",
|
|
"directories": {
|
|
"bin": "dist/bin/"
|
|
},
|
|
"scripts": {
|
|
"start": "pnpm run build && node --enable-source-maps .",
|
|
"test": "pnpm run build && pnpm run test:style",
|
|
"format": "prettier --write .",
|
|
"build": "tsc",
|
|
"version:dev": "pnpm version prerelease --preid dev --no-commit-hooks --no-git-tag-version",
|
|
"version:patch": "pnpm version prepatch --preid dev --no-commit-hooks --no-git-tag-version",
|
|
"version:minor": "pnpm version preminor --preid dev --no-commit-hooks --no-git-tag-version",
|
|
"version:major": "pnpm version premajor --preid dev --no-commit-hooks --no-git-tag-version",
|
|
"version:release": "pnpm version patch --no-commit-hooks --no-git-tag-version",
|
|
"test:style": "eslint **.ts --fix"
|
|
},
|
|
"author": "AstroGD Lukas Weber <hello@astrogd.eu> (https://www.astrogd.eu/)",
|
|
"license": "UNLICENSED",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.astrogd.cloud/tu-darmstadt/aupl-ss24-sudoku-solver.git"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.14.2",
|
|
"@typescript-eslint/eslint-plugin": "^7.12.0",
|
|
"@typescript-eslint/parser": "^7.12.0",
|
|
"eslint": "^8.57.0",
|
|
"prettier": "^3.3.1",
|
|
"rimraf": "^5.0.7",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.4.5"
|
|
}
|
|
}
|