24 lines
569 B
JSON
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"
|
|
}
|
|
}
|