32 lines
845 B
JSON
32 lines
845 B
JSON
{
|
|
"name": "aoc",
|
|
"type": "module",
|
|
"author": "Pascal Syma <pascal@syma.dev> (https://syma.dev/)",
|
|
"license": "All rights reserved.",
|
|
"scripts": {
|
|
"format": "prettier --write .",
|
|
"check": "prettier --check .",
|
|
"test": "bun test",
|
|
"test:dev": "bun test --watch 2025",
|
|
"test:utils": "NODE_ENV=production bun test --watch --coverage utils/*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/cli-progress": "^3.11.6",
|
|
"@types/javascript-astar": "^0.0.35",
|
|
"@types/prompts": "^2.4.9",
|
|
"cli-progress": "^3.12.0",
|
|
"p-limit": "^6.1.0",
|
|
"prettier": "^3.6.2",
|
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
"prompts": "^2.4.2",
|
|
"replace-in-file": "^8.2.0"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"dependencies": {
|
|
"javascript-astar": "^0.4.1"
|
|
}
|
|
}
|