Files
aoc/package.json
T
2024-12-02 13:33:22 +01:00

24 lines
569 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"
},
"devDependencies": {
"@types/bun": "latest",
"@types/prompts": "^2.4.9",
"prettier": "^3.4.0",
"prettier-plugin-organize-imports": "^4.1.0",
"prompts": "^2.4.2",
"replace-in-file": "^8.2.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}