mirror of
https://github.com/hexedtech/codemp-vscode.git
synced 2024-11-25 00:44:48 +01:00
chore: package metadata, dependencies
This commit is contained in:
parent
8ab7fe2293
commit
b6ed2227c6
1 changed files with 14 additions and 17 deletions
31
package.json
31
package.json
|
@ -1,12 +1,9 @@
|
|||
{
|
||||
"name": "codemp",
|
||||
"displayName": "codemp",
|
||||
"description": "",
|
||||
"repository": "",
|
||||
"description": "VSCode codemp plugin -- code multiplexer",
|
||||
"repository": "https://github.com/hexedtech/codemp-vscode",
|
||||
"version": "0.0.1",
|
||||
"napi": {
|
||||
"name": "index"
|
||||
},
|
||||
"engines": {
|
||||
"vscode": "^1.81.0"
|
||||
},
|
||||
|
@ -63,25 +60,25 @@
|
|||
"command": "codemp.helloWorld",
|
||||
"title": "Hello World (debug)"
|
||||
}
|
||||
]
|
||||
,"contributes": {
|
||||
],
|
||||
"contributes": {
|
||||
"configuration": {
|
||||
"title": "TypeScript",
|
||||
"title": "codemp",
|
||||
"properties": {
|
||||
"typescript.server": {
|
||||
"type": "string",
|
||||
"default": "http://codemp.dev:50053",
|
||||
"description": "Server IP to use"
|
||||
"description": "Server address to connect to"
|
||||
},
|
||||
"typescript.username": {
|
||||
"type": "string",
|
||||
"default": "test",
|
||||
"description": "Username to use (the email you used during registration)"
|
||||
"default": "mail@example.net",
|
||||
"description": "Username to use for login (the email you used during registration)"
|
||||
},
|
||||
"typescript.password": {
|
||||
"type": "string",
|
||||
"default": "test",
|
||||
"description": "Password to use"
|
||||
"default": "dont-use-this-password",
|
||||
"description": "Password to use for login"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -104,14 +101,14 @@
|
|||
"@typescript-eslint/eslint-plugin": "^6.4.1",
|
||||
"@typescript-eslint/parser": "^6.4.1",
|
||||
"@vscode/test-electron": "^2.3.4",
|
||||
"@vscode/vsce": "^2.32.0",
|
||||
"eslint": "^8.47.0",
|
||||
"glob": "^10.3.3",
|
||||
"mocha": "^10.2.0",
|
||||
"typescript": "^5.1.6"
|
||||
"typescript": "^5.1.6",
|
||||
"npx": "^10.2.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@codemp/codemp": "0.1.0-auth",
|
||||
"@vscode/vsce": "^2.32.0",
|
||||
"npx": "^10.2.2"
|
||||
"codemp": "^0.0.5"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue