mirror of
https://github.com/coder/registry.git
synced 2026-06-02 20:48:14 +00:00
33 lines
928 B
JSON
33 lines
928 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",
|
|
"tftest": "./scripts/terraform_test_all.sh",
|
|
"tstest": "./scripts/ts_test_auto.sh",
|
|
"shellcheck": "./scripts/shellcheck_validate.sh",
|
|
"update-version": "./update-version.sh"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.3.4",
|
|
"bun-types": "^1.3.4",
|
|
"dedent": "^1.7.0",
|
|
"gray-matter": "^4.0.3",
|
|
"marked": "^16.4.2",
|
|
"prettier": "^3.7.4",
|
|
"prettier-plugin-sh": "^0.18.0",
|
|
"prettier-plugin-terraform-formatter": "^1.2.1",
|
|
"shellcheck": "^4.1.0"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"prettier": {
|
|
"plugins": [
|
|
"prettier-plugin-sh",
|
|
"prettier-plugin-terraform-formatter"
|
|
]
|
|
}
|
|
}
|