mirror of
https://github.com/coder/registry.git
synced 2026-06-05 22:18:15 +00:00
b74290051e
Addresses https://github.com/coder/internal/issues/700. In addition to the automated tests in the PR, I manually tested this module in dev.coder.com.
30 lines
834 B
JSON
30 lines
834 B
JSON
{
|
|
"name": "registry",
|
|
"scripts": {
|
|
"fmt": "bun x prettier --write **/*.sh **/*.ts **/*.md *.md && terraform fmt -recursive -diff",
|
|
"fmt:ci": "bun x prettier --check **/*.sh **/*.ts **/*.md *.md && terraform fmt -check -recursive -diff",
|
|
"terraform-validate": "./scripts/terraform_validate.sh",
|
|
"test": "bun test",
|
|
"update-version": "./update-version.sh"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.2.18",
|
|
"bun-types": "^1.2.18",
|
|
"dedent": "^1.6.0",
|
|
"gray-matter": "^4.0.3",
|
|
"marked": "^16.0.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"
|
|
]
|
|
}
|
|
}
|