codemp-vscode/package.json

88 lines
2 KiB
JSON
Raw Normal View History

{
"name": "codemp",
"displayName": "codemp",
2023-09-14 23:53:13 +02:00
"description": "",
"repository": "",
2023-09-14 23:53:13 +02:00
"version": "0.0.1",
2023-12-24 15:06:43 +01:00
"napi": {
"name": "index"
},
"engines": {
2023-09-14 23:53:13 +02:00
"vscode": "^1.81.0"
},
2023-09-14 23:53:13 +02:00
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.openMyExtension"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"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
{
"command": "codemp.join",
"title": "Join a codemp Workspace"
},
{
"command": "codemp.attach",
"title": "attach to a codemp buffer"
},
{
"command": "codemp.listBuffers",
"title": "List all buffers of joined Workspace"
2023-10-01 10:51:28 +02:00
},
2023-10-01 10:54:08 +02:00
{
"command": "codemp.createBuffer",
"title": "Create a codemp buffer"
2023-10-01 10:54:08 +02:00
},
{
"command": "codemp.disconnectBuffer",
"title": "disconnect from a codemp Buffer (unused)"
},
2023-12-22 19:39:29 +01: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
{
"command": "codemp.printOpCache",
2024-02-14 15:41:03 +01:00
"title": "Print current OpCache"
},
2023-09-14 23:53:13 +02:00
{
"command": "codemp.helloWorld",
2023-09-14 23:53:13 +02:00
"title": "Hello World (debug)"
}
]
},
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",
"eslint": "^8.47.0",
"glob": "^10.3.3",
"mocha": "^10.2.0",
"typescript": "^5.1.6"
},
2023-09-14 23:53:13 +02:00
"dependencies": {
"@codemp/codemp": "0.1.0-debug",
"@vscode/vsce": "^2.32.0",
"npx": "^10.2.2"
2023-09-14 23:53:13 +02:00
}
}