You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
830 B
JSON
28 lines
830 B
JSON
{
|
|
"name": "modules",
|
|
"scripts": {
|
|
"test": "bun test",
|
|
"fmt": "bun x prettier -w **/*.sh .sample/run.sh new.sh **/*.ts **/*.md *.md && terraform fmt **/*.tf .sample/main.tf",
|
|
"fmt:ci": "bun x prettier --check **/*.sh .sample/run.sh new.sh **/*.ts **/*.md *.md && terraform fmt -check **/*.tf .sample/main.tf",
|
|
"lint": "bun run lint.ts && ./terraform_validate.sh",
|
|
"update-version": "./update-version.sh"
|
|
},
|
|
"devDependencies": {
|
|
"bun-types": "^1.1.23",
|
|
"gray-matter": "^4.0.3",
|
|
"marked": "^12.0.2",
|
|
"prettier": "^3.3.3",
|
|
"prettier-plugin-sh": "^0.13.1",
|
|
"prettier-plugin-terraform-formatter": "^1.2.1"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.5.4"
|
|
},
|
|
"prettier": {
|
|
"plugins": [
|
|
"prettier-plugin-sh",
|
|
"prettier-plugin-terraform-formatter"
|
|
]
|
|
}
|
|
}
|