codemp-vscode/package.json

262 lines
6.4 KiB
JSON
Raw Normal View History

{
"name": "codemp",
"displayName": "codemp",
2024-09-14 18:12:10 +02:00
"description": "code multiplexer",
"icon": "resources/logo.png",
"homepage": "https://code.mp",
2024-09-06 14:15:10 +02:00
"repository": "https://github.com/hexedtech/codemp-vscode",
2024-09-14 18:12:10 +02:00
"publisher": "hexedtech",
2024-10-20 17:25:43 +02:00
"version": "0.2.0",
"engines": {
2023-09-14 23:53:13 +02:00
"vscode": "^1.81.0"
},
2024-09-14 18:12:10 +02:00
"galleryBanner": {
"color": "#201F29",
"theme": "dark"
},
"keywords": [
"codemp",
"collaborative",
"editing",
"multiplatform",
"live",
"development"
2024-09-14 18:12:10 +02:00
],
2023-09-14 23:53:13 +02:00
"categories": [
"SCM Providers",
"Visualization",
"Programming Languages",
"Other"
2023-09-14 23:53:13 +02:00
],
"activationEvents": [
"onCommand:extension.openMyExtension"
],
"main": "./out/extension.js",
"contributes": {
2024-09-06 18:45:25 +02:00
"viewsContainers": {
"activitybar": [
{
"id": "codemp-tree-container",
"title": "codemp",
"icon": "resources/logo.svg"
}
]
2024-09-06 18:45:25 +02:00
},
2024-09-06 23:15:03 +02:00
"viewsWelcome": [
{
"view": "codemp-tree-view",
2024-09-07 22:13:45 +02:00
"contents": "codemp -- [code multiplexer](https://code.mp)\n[Connect](command:codemp.connect)"
2024-09-06 23:15:03 +02:00
}
],
2024-09-06 18:45:25 +02:00
"views": {
"codemp-tree-container": [
{
"id": "codemp-tree-view",
"name": "tree"
}
]
},
"menus": {
"view/title": [
{
2024-09-07 01:11:28 +02:00
"command": "codemp.listWorkspaces",
"when": "view == codemp-tree-view",
2024-09-16 04:29:31 +02:00
"group": "navigation"
},
{
"command": "codemp.share",
"when": "view == codemp-tree-view",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "codemp.join",
"when": "view == codemp-tree-view && viewItem == workspace_active",
"group": "inline"
},
{
"command": "codemp.attach",
2024-09-07 01:11:28 +02:00
"when": "view == codemp-tree-view && viewItem == buffer",
"group": "inline"
},
{
"command": "codemp.sync",
"when": "view == codemp-tree-view && viewItem == buffer_active",
"group": "inline"
2024-09-24 23:27:45 +02:00
},
{
"command": "codemp.jump",
"when": "view == codemp-tree-view && viewItem == user",
"group": "inline"
}
]
},
2023-09-14 23:53:13 +02:00
"commands": [
{
"command": "codemp.connect",
"title": "Connect",
"category": "codemp",
2024-09-07 01:11:28 +02:00
"icon": "$(debug-disconnect)"
2023-09-14 23:53:13 +02:00
},
2023-10-01 10:51:28 +02:00
{
"command": "codemp.join",
"title": "Join",
"category": "codemp",
2024-09-07 01:11:28 +02:00
"icon": "$(testing-skipped-icon)"
},
{
"command": "codemp.attach",
"title": "Attach",
"category": "codemp",
2024-09-07 01:11:28 +02:00
"icon": "$(ports-view-icon)"
},
2024-09-15 03:11:52 +02:00
{
"command": "codemp.share",
"title": "Share",
"category": "codemp",
2024-09-16 04:29:31 +02:00
"icon": "$(search-expand-results)"
2024-09-15 03:11:52 +02:00
},
{
"command": "codemp.createWorkspace",
"title": "Create Workspace",
"category": "codemp",
2024-09-07 01:11:28 +02:00
"icon": "$(diff-insert)"
},
2024-09-09 15:59:41 +02:00
{
"command": "codemp.inviteWorkspace",
2024-09-14 18:12:10 +02:00
"title": "Invite to Workspace",
2024-09-09 15:59:41 +02:00
"category": "codemp",
"icon": "$(arrow-up)"
},
{
"command": "codemp.listWorkspaces",
"title": "List Workspaces",
"category": "codemp",
2024-09-07 01:11:28 +02:00
"icon": "$(extensions-view-icon)"
},
2024-09-09 15:59:41 +02:00
{
"command": "codemp.leave",
2024-09-09 15:59:41 +02:00
"title": "Leave Workspace",
"category": "codemp",
"icon": "$(arrow-down)"
2023-10-01 10:51:28 +02:00
},
2023-10-01 10:54:08 +02:00
{
"command": "codemp.createBuffer",
"title": "Create Buffer",
"category": "codemp",
2024-09-07 01:11:28 +02:00
"icon": "$(diff-insert)"
2023-10-01 10:54:08 +02:00
},
{
2024-09-09 15:59:41 +02:00
"command": "codemp.listBuffers",
"title": "List Buffers",
"category": "codemp",
2024-09-09 15:59:41 +02:00
"icon": "$(output-view-icon)"
},
{
"command": "codemp.detach",
"title": "Detach from Buffer",
"category": "codemp",
"icon": "$(arrow-down)"
},
2023-12-22 19:39:29 +01:00
{
2024-10-05 17:55:23 +02:00
"command": "codemp.deleteBuffer",
"title": "Delete Buffer",
"category": "codemp",
"icon": "$(arrow-down)"
},
{
"command": "codemp.sync",
"title": "Sync",
"category": "codemp",
"icon": "$(extensions-refresh)"
2024-09-09 15:59:41 +02:00
},
{
"command": "codemp.refresh",
"title": "Refresh",
"category": "codemp",
"icon": "$(extensions-refresh)"
2024-09-24 23:27:45 +02:00
},
{
"command": "codemp.jump",
"title": "Jump",
"category": "codemp",
2024-09-25 05:08:41 +02:00
"icon": "$(debug-console-evaluation-input)"
2023-09-14 23:53:13 +02:00
}
2024-10-06 23:58:58 +02:00
,
{
"command": "codemp.follow",
"title": "Follow User",
"category": "codemp",
"icon": "$(debug-console-evaluation-input)"
}
2024-09-06 14:15:10 +02:00
],
"configuration": {
"title": "codemp",
"properties": {
"codemp.username": {
"type": "string",
"default": "",
"description": "Username to use for login (the email you used during registration)"
},
"codemp.password": {
"type": "string",
"default": "",
"description": "Password to use for login"
2024-09-16 04:29:22 +02:00
},
"codemp.host": {
"type": "string",
"default": "code.mp",
"description": "Server address to connect to"
},
"codemp.port": {
"type": "integer",
"default": 50053,
"description": "Port used for connection"
},
"codemp.tls": {
"type": "boolean",
"default": false,
2024-09-28 12:42:58 +02:00
"description": "Whether to use TLS for connection, temporarily disabled by default"
},
"codemp.autoResync": {
"type": "boolean",
"default": false,
"description": "Whether to auto resync current buffer or not when out of sync"
}
}
}
},
2023-09-14 23:53:13 +02:00
"scripts": {
"vscode:prepublish": "npm run compile",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"compile": "tsc -p ./",
2023-12-24 15:06:43 +01:00
"bundle": "vsce package"
},
2023-09-14 23:53:13 +02:00
"devDependencies": {
"@napi-rs/cli": "^2.16.3",
2023-09-14 23:53:13 +02:00
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.81.0",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@vscode/test-electron": "^2.3.4",
"@vscode/vsce": "^3.1.0",
2023-09-14 23:53:13 +02:00
"eslint": "^8.47.0",
"glob": "^10.3.3",
"mocha": "^10.2.0",
"npx": "^10.2.2",
"typescript": "^5.1.6"
},
2023-09-14 23:53:13 +02:00
"dependencies": {
2024-10-20 17:25:27 +02:00
"codemp": "^0.8.0"
2023-09-14 23:53:13 +02:00
}
}