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",
|
"name": "codemp",
|
||||||
"displayName": "codemp",
|
"displayName": "codemp",
|
||||||
"description": "",
|
"description": "VSCode codemp plugin -- code multiplexer",
|
||||||
"repository": "",
|
"repository": "https://github.com/hexedtech/codemp-vscode",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"napi": {
|
|
||||||
"name": "index"
|
|
||||||
},
|
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.81.0"
|
"vscode": "^1.81.0"
|
||||||
},
|
},
|
||||||
|
@ -63,25 +60,25 @@
|
||||||
"command": "codemp.helloWorld",
|
"command": "codemp.helloWorld",
|
||||||
"title": "Hello World (debug)"
|
"title": "Hello World (debug)"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
,"contributes": {
|
"contributes": {
|
||||||
"configuration": {
|
"configuration": {
|
||||||
"title": "TypeScript",
|
"title": "codemp",
|
||||||
"properties": {
|
"properties": {
|
||||||
"typescript.server": {
|
"typescript.server": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"default": "http://codemp.dev:50053",
|
"default": "http://codemp.dev:50053",
|
||||||
"description": "Server IP to use"
|
"description": "Server address to connect to"
|
||||||
},
|
},
|
||||||
"typescript.username": {
|
"typescript.username": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"default": "test",
|
"default": "mail@example.net",
|
||||||
"description": "Username to use (the email you used during registration)"
|
"description": "Username to use for login (the email you used during registration)"
|
||||||
},
|
},
|
||||||
"typescript.password": {
|
"typescript.password": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"default": "test",
|
"default": "dont-use-this-password",
|
||||||
"description": "Password to use"
|
"description": "Password to use for login"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -104,14 +101,14 @@
|
||||||
"@typescript-eslint/eslint-plugin": "^6.4.1",
|
"@typescript-eslint/eslint-plugin": "^6.4.1",
|
||||||
"@typescript-eslint/parser": "^6.4.1",
|
"@typescript-eslint/parser": "^6.4.1",
|
||||||
"@vscode/test-electron": "^2.3.4",
|
"@vscode/test-electron": "^2.3.4",
|
||||||
|
"@vscode/vsce": "^2.32.0",
|
||||||
"eslint": "^8.47.0",
|
"eslint": "^8.47.0",
|
||||||
"glob": "^10.3.3",
|
"glob": "^10.3.3",
|
||||||
"mocha": "^10.2.0",
|
"mocha": "^10.2.0",
|
||||||
"typescript": "^5.1.6"
|
"typescript": "^5.1.6",
|
||||||
|
"npx": "^10.2.2"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@codemp/codemp": "0.1.0-auth",
|
"codemp": "^0.0.5"
|
||||||
"@vscode/vsce": "^2.32.0",
|
|
||||||
"npx": "^10.2.2"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue