cursorless/package.json
2021-02-18 17:43:52 +00:00

195 lines
4.7 KiB
JSON

{
"name": "decorative-navigation",
"displayName": "Decorative Navigation",
"description": "Navigate files by decorated symbols",
"version": "0.0.1",
"engines": {
"vscode": "^1.53.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "decorative-navigation.helloWorld",
"title": "Hello World"
}
],
"colors": [
{
"id": "decorativeNavigation.defaultBorder",
"description": "Border color to use for default symbols",
"defaults": {
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
}
},
{
"id": "decorativeNavigation.greenBorder",
"description": "Border color to use for green symbols",
"defaults": {
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
}
},
{
"id": "decorativeNavigation.redBorder",
"description": "Border color to use for red symbols",
"defaults": {
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
}
},
{
"id": "decorativeNavigation.grayBorder",
"description": "Border color to use for gray symbols",
"defaults": {
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
}
},
{
"id": "decorativeNavigation.brownBorder",
"description": "Border color to use for brown symbols",
"defaults": {
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
}
},
{
"id": "decorativeNavigation.tealBorder",
"description": "Border color to use for teal symbols",
"defaults": {
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
}
},
{
"id": "decorativeNavigation.mauveBorder",
"description": "Border color to use for mauve symbols",
"defaults": {
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
}
},
{
"id": "decorativeNavigation.blueBorder",
"description": "Border color to use for blue symbols",
"defaults": {
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
}
},
{
"id": "decorativeNavigation.defaultBackground",
"description": "Background color to use for default symbols",
"defaults": {
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
}
},
{
"id": "decorativeNavigation.greenBackground",
"description": "Background color to use for green symbols",
"defaults": {
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
}
},
{
"id": "decorativeNavigation.redBackground",
"description": "Background color to use for red symbols",
"defaults": {
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
}
},
{
"id": "decorativeNavigation.grayBackground",
"description": "Background color to use for gray symbols",
"defaults": {
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
}
},
{
"id": "decorativeNavigation.brownBackground",
"description": "Background color to use for brown symbols",
"defaults": {
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
}
},
{
"id": "decorativeNavigation.tealBackground",
"description": "Background color to use for teal symbols",
"defaults": {
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
}
},
{
"id": "decorativeNavigation.mauveBackground",
"description": "Background color to use for mauve symbols",
"defaults": {
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
}
},
{
"id": "decorativeNavigation.blueBackground",
"description": "Background color to use for blue symbols",
"defaults": {
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
}
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/vscode": "^1.53.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.15.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"typescript": "^4.1.2",
"vscode-test": "^1.4.1"
},
"dependencies": {
"@types/lodash": "^4.14.168",
"lodash": "^4.17.20"
}
}