2023-07-02 23:58:06 +02:00
|
|
|
{
|
2024-08-24 20:38:07 +02:00
|
|
|
"name": "codemp",
|
|
|
|
"displayName": "codemp",
|
2024-09-06 14:15:10 +02:00
|
|
|
"description": "VSCode codemp plugin -- code multiplexer",
|
|
|
|
"repository": "https://github.com/hexedtech/codemp-vscode",
|
2023-09-14 23:53:13 +02:00
|
|
|
"version": "0.0.1",
|
2023-07-02 23:58:06 +02:00
|
|
|
"engines": {
|
2023-09-14 23:53:13 +02:00
|
|
|
"vscode": "^1.81.0"
|
2023-07-02 23:58:06 +02:00
|
|
|
},
|
2023-09-14 23:53:13 +02:00
|
|
|
"categories": [
|
|
|
|
"Other"
|
|
|
|
],
|
|
|
|
"activationEvents": [
|
|
|
|
"onCommand:extension.openMyExtension"
|
|
|
|
],
|
|
|
|
"main": "./out/extension.js",
|
|
|
|
"contributes": {
|
|
|
|
"commands": [
|
|
|
|
{
|
2024-08-24 20:38:07 +02:00
|
|
|
"command": "codemp.connect",
|
2023-09-14 23:53:13 +02:00
|
|
|
"title": "Connect to a codemp host"
|
|
|
|
},
|
2023-10-01 10:51:28 +02:00
|
|
|
{
|
2024-08-24 20:38:07 +02:00
|
|
|
"command": "codemp.join",
|
2024-08-29 00:04:58 +02:00
|
|
|
"title": "Join a codemp Workspace if you are allowed"
|
2024-08-24 20:38:07 +02:00
|
|
|
},
|
|
|
|
{
|
2024-08-27 22:12:23 +02:00
|
|
|
"command": "codemp.attach",
|
2024-08-29 00:04:58 +02:00
|
|
|
"title": "Attach to a codemp buffer"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "codemp.createWorkspace",
|
|
|
|
"title": "Create a new Workspace if you are allowed"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "codemp.listWorkspaces",
|
|
|
|
"title": "List all Workspaces you can join"
|
2024-02-12 19:22:50 +01:00
|
|
|
},
|
|
|
|
{
|
2024-08-24 20:38:07 +02:00
|
|
|
"command": "codemp.listBuffers",
|
2024-02-12 19:22:50 +01:00
|
|
|
"title": "List all buffers of joined Workspace"
|
2023-10-01 10:51:28 +02:00
|
|
|
},
|
2023-10-01 10:54:08 +02:00
|
|
|
{
|
2024-08-27 22:12:23 +02:00
|
|
|
"command": "codemp.createBuffer",
|
|
|
|
"title": "Create a codemp buffer"
|
2023-10-01 10:54:08 +02:00
|
|
|
},
|
2023-10-02 23:35:19 +02:00
|
|
|
{
|
2024-08-24 20:38:07 +02:00
|
|
|
"command": "codemp.disconnectBuffer",
|
2024-02-12 19:22:50 +01:00
|
|
|
"title": "disconnect from a codemp Buffer (unused)"
|
2023-10-02 23:35:19 +02:00
|
|
|
},
|
2023-12-22 19:39:29 +01:00
|
|
|
{
|
2024-08-24 20:38:07 +02:00
|
|
|
"command": "codemp.sync",
|
2023-12-22 19:39:29 +01:00
|
|
|
"title": "Sync the current buffer"
|
|
|
|
},
|
2024-02-14 15:41:03 +01:00
|
|
|
{
|
2024-08-24 20:38:07 +02:00
|
|
|
"command": "codemp.printOpCache",
|
2024-02-14 15:41:03 +01:00
|
|
|
"title": "Print current OpCache"
|
|
|
|
},
|
2023-09-14 23:53:13 +02:00
|
|
|
{
|
2024-08-24 20:38:07 +02:00
|
|
|
"command": "codemp.helloWorld",
|
2023-09-14 23:53:13 +02:00
|
|
|
"title": "Hello World (debug)"
|
|
|
|
}
|
2024-09-06 14:15:10 +02:00
|
|
|
],
|
|
|
|
"contributes": {
|
2024-08-29 00:04:58 +02:00
|
|
|
"configuration": {
|
2024-09-06 14:15:10 +02:00
|
|
|
"title": "codemp",
|
2024-08-29 00:04:58 +02:00
|
|
|
"properties": {
|
|
|
|
"typescript.server": {
|
|
|
|
"type": "string",
|
|
|
|
"default": "http://codemp.dev:50053",
|
2024-09-06 14:15:10 +02:00
|
|
|
"description": "Server address to connect to"
|
2024-08-29 00:04:58 +02:00
|
|
|
},
|
|
|
|
"typescript.username": {
|
|
|
|
"type": "string",
|
2024-09-06 14:15:10 +02:00
|
|
|
"default": "mail@example.net",
|
|
|
|
"description": "Username to use for login (the email you used during registration)"
|
2024-08-29 00:04:58 +02:00
|
|
|
},
|
|
|
|
"typescript.password": {
|
|
|
|
"type": "string",
|
2024-09-06 14:15:10 +02:00
|
|
|
"default": "dont-use-this-password",
|
|
|
|
"description": "Password to use for login"
|
2024-08-29 00:04:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-07-02 23:58:06 +02:00
|
|
|
},
|
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",
|
2024-08-24 20:38:07 +02:00
|
|
|
"compile": "tsc -p ./",
|
2023-12-24 15:06:43 +01:00
|
|
|
"bundle": "vsce package"
|
2023-08-19 18:43:22 +02:00
|
|
|
},
|
2023-09-14 23:53:13 +02:00
|
|
|
"devDependencies": {
|
2024-02-10 19:32:20 +01:00
|
|
|
"@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",
|
2024-09-06 14:15:10 +02:00
|
|
|
"@vscode/vsce": "^2.32.0",
|
2023-09-14 23:53:13 +02:00
|
|
|
"eslint": "^8.47.0",
|
|
|
|
"glob": "^10.3.3",
|
|
|
|
"mocha": "^10.2.0",
|
2024-09-06 14:15:10 +02:00
|
|
|
"typescript": "^5.1.6",
|
|
|
|
"npx": "^10.2.2"
|
2023-08-19 18:43:22 +02:00
|
|
|
},
|
2023-09-14 23:53:13 +02:00
|
|
|
"dependencies": {
|
2024-09-06 14:15:10 +02:00
|
|
|
"codemp": "^0.0.5"
|
2023-09-14 23:53:13 +02:00
|
|
|
}
|
2023-07-02 23:58:06 +02:00
|
|
|
}
|