cursorless/package.json

192 lines
4.7 KiB
JSON
Raw Normal View History

2021-02-14 18:23:21 +03:00
{
"name": "cursorless",
"displayName": "Cursorless",
"description": "Don't let the cursor slow you down",
2021-05-12 12:53:00 +03:00
"icon": "images/icon.png",
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
2021-05-13 23:49:11 +03:00
"version": "0.11.1",
2021-03-05 20:16:13 +03:00
"publisher": "pokey",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pokey/cursorless-vscode.git"
2021-03-05 20:16:13 +03:00
},
2021-02-14 18:23:21 +03:00
"engines": {
"vscode": "^1.53.0"
},
2021-05-13 23:49:11 +03:00
"extensionKind": [
"workspace"
],
2021-02-14 18:23:21 +03:00
"categories": [
"Other"
],
"extensionDependencies": [
"pokey.parse-tree"
],
2021-02-14 18:23:21 +03:00
"activationEvents": [
2021-02-18 20:43:52 +03:00
"*"
2021-02-14 18:23:21 +03:00
],
2021-05-12 12:53:00 +03:00
"main": "./dist/extension.js",
2021-02-14 18:23:21 +03:00
"contributes": {
"commands": [
2021-03-05 20:16:13 +03:00
{
"command": "cursorless.command",
"title": "Cursorless: Perform command"
},
{
"command": "cursorless.toggleDecorations",
"title": "Cursorless: Toggle decorations"
2021-02-14 18:23:21 +03:00
}
2021-02-16 19:45:00 +03:00
],
"colors": [
{
"id": "cursorless.defaultBorder",
2021-02-18 18:58:14 +03:00
"description": "Border color to use for default symbols",
2021-02-16 19:45:00 +03:00
"defaults": {
2021-03-05 20:16:13 +03:00
"dark": "#cdc7f0",
"light": "#000000",
"highContrast": "#000000"
2021-02-16 19:45:00 +03:00
}
},
{
"id": "cursorless.greenBorder",
2021-02-18 18:58:14 +03:00
"description": "Border color to use for green symbols",
2021-02-16 19:45:00 +03:00
"defaults": {
2021-03-05 20:16:13 +03:00
"dark": "#22d618",
"light": "#2ec426",
"highContrast": "#2ec426"
2021-02-16 19:45:00 +03:00
}
},
{
"id": "cursorless.redBorder",
2021-02-18 18:58:14 +03:00
"description": "Border color to use for red symbols",
2021-02-16 19:45:00 +03:00
"defaults": {
2021-03-05 20:16:13 +03:00
"dark": "#e96900",
"light": "#ff3300",
"highContrast": "#ff3300"
2021-02-16 19:45:00 +03:00
}
},
{
"id": "cursorless.yellowBorder",
2021-02-23 21:13:13 +03:00
"description": "Border color to use for yellow symbols",
2021-02-16 19:45:00 +03:00
"defaults": {
2021-03-05 20:16:13 +03:00
"dark": "#f1cd00",
"light": "#f0b800",
"highContrast": "#f0b800"
2021-02-16 19:45:00 +03:00
}
},
{
"id": "cursorless.mauveBorder",
2021-02-18 18:58:14 +03:00
"description": "Border color to use for mauve symbols",
2021-02-16 19:45:00 +03:00
"defaults": {
2021-03-05 20:16:13 +03:00
"dark": "#de25ff",
"light": "#ff00f2",
"highContrast": "#ff00f2"
2021-02-16 19:45:00 +03:00
}
},
{
"id": "cursorless.blueBorder",
2021-02-18 18:58:14 +03:00
"description": "Border color to use for blue symbols",
2021-02-16 19:45:00 +03:00
"defaults": {
2021-03-05 20:16:13 +03:00
"dark": "#00b7ff",
"light": "#19a1d6",
"highContrast": "#19a1d6"
}
2021-04-18 18:47:36 +03:00
},
{
"id": "cursorless.pendingDeleteBackground",
"description": "Background color to use for ranges about to be deleted",
"defaults": {
"dark": "#ff00008a",
"light": "#ff00008a",
"highContrast": "#ff00008a"
}
2021-05-02 18:57:42 +03:00
},
{
"id": "cursorless.referencedBackground",
"description": "Background color to use for ranges that are being referenced",
"defaults": {
"dark": "#00a2ff4d",
"light": "#00a2ff4d",
"highContrast": "#00a2ff4d"
}
},
2021-05-02 18:57:42 +03:00
{
"id": "cursorless.justAddedBackground",
"description": "Background color to use for ranges that have just been added",
"defaults": {
"dark": "#09ff005b",
"light": "#09ff005b",
"highContrast": "#09ff005b"
}
2021-05-08 17:57:13 +03:00
},
{
"id": "cursorless.pendingModification0Background",
"description": "Background color to use for ranges that are being changed",
2021-05-08 17:57:13 +03:00
"defaults": {
"dark": "#8c00ff86",
"light": "#8c00ff86",
"highContrast": "#8c00ff86"
2021-05-08 17:57:13 +03:00
}
},
{
"id": "cursorless.pendingModification1Background",
"description": "Background color to use for ranges that are being changed",
2021-05-08 17:57:13 +03:00
"defaults": {
"dark": "#ff009d7e",
"light": "#ff009d7e",
"highContrast": "#ff009d7e"
2021-05-08 17:57:13 +03:00
}
2021-03-05 20:16:13 +03:00
}
],
"configuration": {
"title": "Cursorless",
2021-03-05 20:16:13 +03:00
"properties": {
"cursorless.showOnStart": {
2021-03-05 20:16:13 +03:00
"type": "boolean",
"default": true,
"description": "Whether to show decorations on vscode start."
2021-04-18 18:47:36 +03:00
},
"cursorless.pendingEditDecorationTime": {
"type": "integer",
2021-05-12 12:53:00 +03:00
"default": 175,
2021-04-18 18:47:36 +03:00
"description": "How long in milliseconds to show a pending edit decoration"
2021-02-16 19:45:00 +03:00
}
}
2021-03-05 20:16:13 +03:00
}
2021-02-14 18:23:21 +03:00
},
"scripts": {
2021-04-22 15:45:07 +03:00
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
2021-05-12 12:53:00 +03:00
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
2021-04-22 15:45:07 +03:00
"esbuild": "npm run -S esbuild-base -- --sourcemap",
"esbuild-watch": "npm run -S esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./",
2021-02-14 18:23:21 +03:00
"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-04-22 15:45:07 +03:00
"esbuild": "^0.11.12",
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",
2021-04-22 15:45:07 +03:00
"immutability-helper": "^3.1.1",
2021-04-18 14:55:40 +03:00
"lodash": "^4.17.21"
2021-02-14 18:23:21 +03:00
}
2021-04-18 18:47:36 +03:00
}