1
Fork 0
mirror of https://github.com/RGBCube/alejandra synced 2025-07-30 12:07:46 +00:00
alejandra/integrations/vscode/package.json
2025-04-10 16:29:41 -06:00

70 lines
1.5 KiB
JSON

{
"activationEvents": [
"onLanguage:nix"
],
"author": {
"email": "kamadorueda@gmail.com",
"name": "Kevin Amado",
"url": "https://github.com/kamadorueda"
},
"categories": [
"Formatters"
],
"contributes": {
"configuration": {
"properties": {
"alejandra.program": {
"default": "alejandra",
"description": "Specifies an alternative full path to the Alejandra executable.",
"type": [
"string"
]
}
},
"title": "Alejandra"
},
"configurationDefaults": {
"[nix]": {
"editor.defaultFormatter": "kamadorueda.alejandra",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": false
},
"alejandra.program": "alejandra"
},
"languages": [
{
"aliases": [
"nix",
"Nix"
],
"extensions": [
".nix"
],
"id": "nix"
}
]
},
"description": "The Uncompromising Nix Code Formatter",
"devDependencies": {
"ovsx": "*",
"vsce": "*"
},
"displayName": "Alejandra 💅",
"engines": {
"vscode": "^1.64.0"
},
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/kamadorueda"
},
"license": "Unlicense",
"main": "./extension.js",
"name": "alejandra",
"publisher": "kamadorueda",
"repository": {
"type": "git",
"url": "https://github.com/kamadorueda/alejandra"
},
"version": "4.0.0"
}