- Improved logic for handling air-gapped environments by utilizing fallback mechanisms in JetBrains integrations. - Updated parameters and default settings to align with the new connectivity conditions, ensuring robustness in varied network scenarios. - Expanded tests to validate custom configurations even when API access is restricted, confirming consistent behavior across setups.
29 lines
842 B
JSON
29 lines
842 B
JSON
{
|
|
"name": "registry",
|
|
"scripts": {
|
|
"fmt": "bun x prettier --write **/*.sh **/*.ts **/main.test.ts **/*.md *.md && terraform fmt -recursive -diff",
|
|
"fmt:ci": "bun x prettier --check **/*.sh **/*.ts **/main.test.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",
|
|
"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"
|
|
]
|
|
}
|
|
}
|