pulsar/packages/line-ending-selector/package.json
2022-11-19 17:12:43 +01:00

36 lines
769 B
JSON

{
"name": "line-ending-selector",
"version": "0.7.7",
"main": "./lib/main",
"description": "Select the line ending to use for the current editor.",
"license": "MIT",
"repository": "https://github.com/pulsar-edit/pulsar",
"engines": {
"atom": "^1.0.0"
},
"dependencies": {
"atom-select-list": "^0.7.0",
"underscore-plus": "^1.7.0"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"configSchema": {
"defaultLineEnding": {
"title": "Default line ending",
"description": "Line ending to use for new files",
"type": "string",
"default": "OS Default",
"enum": [
"OS Default",
"LF",
"CRLF"
]
}
}
}