mirror of
https://github.com/coder/registry.git
synced 2026-06-02 20:48:14 +00:00
30 lines
803 B
JSON
30 lines
803 B
JSON
{
|
|
"name": "registry",
|
|
"scripts": {
|
|
"fmt": "bun x prettier --write . && terraform fmt -recursive -diff",
|
|
"fmt:ci": "bun x prettier --check . && terraform fmt -check -recursive -diff",
|
|
"terraform-validate": "./scripts/terraform_validate.sh",
|
|
"test": "./scripts/terraform_test_all.sh",
|
|
"update-version": "./update-version.sh"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.2.21",
|
|
"bun-types": "^1.2.21",
|
|
"dedent": "^1.6.0",
|
|
"gray-matter": "^4.0.3",
|
|
"marked": "^16.2.0",
|
|
"prettier": "^3.6.2",
|
|
"prettier-plugin-sh": "^0.18.0",
|
|
"prettier-plugin-terraform-formatter": "^1.2.1"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"prettier": {
|
|
"plugins": [
|
|
"prettier-plugin-sh",
|
|
"prettier-plugin-terraform-formatter"
|
|
]
|
|
}
|
|
}
|