Files
aoc/package.json
T
2024-12-08 19:44:46 +01:00

26 lines
676 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 2024",
"test:utils": "NODE_ENV=production bun test --watch --coverage utils/*"
},
"devDependencies": {
"@types/bun": "latest",
"@types/prompts": "^2.4.9",
"p-limit": "^6.1.0",
"prettier": "^3.4.0",
"prettier-plugin-organize-imports": "^4.1.0",
"prompts": "^2.4.2",
"replace-in-file": "^8.2.0"
},
"peerDependencies": {
"typescript": "^5.7.2"
}
}