cursorless/package.json

195 lines
4.7 KiB
JSON
Raw Normal View History

2021-02-14 18:23:21 +03:00
{
2021-02-16 19:45:00 +03:00
"name": "decorative-navigation",
2021-02-14 18:23:21 +03:00
"displayName": "Decorative Navigation",
"description": "Navigate files by decorated symbols",
"version": "0.0.1",
"engines": {
"vscode": "^1.53.0"
},
"categories": [
"Other"
],
"activationEvents": [
2021-02-16 19:45:00 +03:00
"onCommand:decorative-navigation.helloWorld"
2021-02-14 18:23:21 +03:00
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "decorative-navigation.helloWorld",
"title": "Hello World"
}
2021-02-16 19:45:00 +03:00
],
"colors": [
{
2021-02-18 18:58:14 +03:00
"id": "decorativeNavigation.defaultBorder",
"description": "Border color to use for default symbols",
2021-02-16 19:45:00 +03:00
"defaults": {
2021-02-18 18:58:14 +03:00
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
2021-02-16 19:45:00 +03:00
}
},
{
2021-02-18 18:58:14 +03:00
"id": "decorativeNavigation.greenBorder",
"description": "Border color to use for green symbols",
2021-02-16 19:45:00 +03:00
"defaults": {
2021-02-18 18:58:14 +03:00
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
2021-02-16 19:45:00 +03:00
}
},
{
2021-02-18 18:58:14 +03:00
"id": "decorativeNavigation.redBorder",
"description": "Border color to use for red symbols",
2021-02-16 19:45:00 +03:00
"defaults": {
2021-02-18 18:58:14 +03:00
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
2021-02-16 19:45:00 +03:00
}
},
{
2021-02-18 18:58:14 +03:00
"id": "decorativeNavigation.grayBorder",
"description": "Border color to use for gray symbols",
2021-02-16 19:45:00 +03:00
"defaults": {
2021-02-18 18:58:14 +03:00
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
2021-02-16 19:45:00 +03:00
}
},
{
2021-02-18 18:58:14 +03:00
"id": "decorativeNavigation.brownBorder",
"description": "Border color to use for brown symbols",
2021-02-16 19:45:00 +03:00
"defaults": {
2021-02-18 18:58:14 +03:00
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
2021-02-16 19:45:00 +03:00
}
},
{
2021-02-18 18:58:14 +03:00
"id": "decorativeNavigation.tealBorder",
"description": "Border color to use for teal symbols",
2021-02-16 19:45:00 +03:00
"defaults": {
2021-02-18 18:58:14 +03:00
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
2021-02-16 19:45:00 +03:00
}
},
{
2021-02-18 18:58:14 +03:00
"id": "decorativeNavigation.mauveBorder",
"description": "Border color to use for mauve symbols",
2021-02-16 19:45:00 +03:00
"defaults": {
2021-02-18 18:58:14 +03:00
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
2021-02-16 19:45:00 +03:00
}
},
{
2021-02-18 18:58:14 +03:00
"id": "decorativeNavigation.blueBorder",
"description": "Border color to use for blue symbols",
2021-02-16 19:45:00 +03:00
"defaults": {
2021-02-18 18:58:14 +03:00
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
2021-02-16 19:45:00 +03:00
}
},
{
2021-02-18 18:58:14 +03:00
"id": "decorativeNavigation.defaultBackground",
"description": "Background color to use for default symbols",
2021-02-16 19:45:00 +03:00
"defaults": {
2021-02-18 18:58:14 +03:00
"dark": "#00000000",
"light": "#00000000",
"highContrast": "#00000000"
2021-02-16 19:45:00 +03:00
}
},
{
2021-02-18 18:58:14 +03:00
"id": "decorativeNavigation.greenBackground",
"description": "Background color to use for green symbols",
2021-02-16 19:45:00 +03:00
"defaults": {
2021-02-18 18:58:14 +03:00
"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"
2021-02-16 19:45:00 +03:00
}
}
2021-02-14 18:23:21 +03:00
]
},
"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",
2021-02-16 19:45:00 +03:00
"@types/vscode": "^1.53.0",
2021-02-14 18:23:21 +03:00
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
2021-02-16 19:45:00 +03:00
"eslint": "^7.15.0",
2021-02-14 18:23:21 +03:00
"glob": "^7.1.6",
"mocha": "^8.1.3",
"typescript": "^4.1.2",
"vscode-test": "^1.4.1"
2021-02-16 19:45:00 +03:00
},
"dependencies": {
"@types/lodash": "^4.14.168",
"lodash": "^4.17.20"
2021-02-14 18:23:21 +03:00
}
2021-02-16 19:45:00 +03:00
}