-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.32 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "vscode-pair",
"displayName": "VSCode Pair",
"description": "Real-time pair programming",
"version": "0.1.0",
"author": "Kim Simonsen",
"publisher": "polydecay",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/polydecay/vscode-pair.git"
},
"engines": {
"vscode": "^1.15.0"
},
"main": "./build/extension",
"activationEvents": [
"onCommand:vscodePair.startServer",
"onCommand:vscodePair.connect"
],
"contributes": {
"commands": [
{
"command": "vscodePair.startServer",
"title": "VSCodePair: Start Server"
},
{
"command": "vscodePair.stopServer",
"title": "VSCodePair: Stop Server"
},
{
"command": "vscodePair.connect",
"title": "VSCodePair: Connect"
},
{
"command": "vscodePair.disconnect",
"title": "VSCodePair: Disconnect"
}
],
"configuration": {
"title": "VSCode-Pair Configuration",
"properties": {
"vscodePair.username": {
"type": "string",
"maxLength": 25,
"default": ""
},
"vscodePair.selectionColor": {
"type": "string",
"pattern": "^rgba\\([0-9]+, ?[0-9]+, ?[0-9]+, ?([0-1](\\.[0-9]+)?)\\)$",
"default": "rgba(192, 64, 255, 0.25)"
},
"vscodePair.updateInterval": {
"type": "integer",
"default": 650,
"description": "Client update interval in milliseconds"
},
"vscodePair.server.port": {
"type": "integer",
"default": 8844
}
}
}
},
"scripts": {
"build": "tsc -p ./",
"test": "node ./node_modules/vscode/bin/test",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/crc": "^3.4.0",
"@types/diff": "^3.2.2",
"@types/diff-match-patch": "^1.0.32",
"@types/fs-extra": "^4.0.5",
"@types/lodash": "^4.14.85",
"@types/node": "^8.0.52",
"@types/socket.io": "^1.4.31",
"@types/socket.io-client": "^1.4.32",
"typescript": "^2.6.1",
"vscode": "^1.1.6"
},
"dependencies": {
"crc": "^3.5.0",
"diff-match-patch": "^1.0.0",
"fs-extra": "^4.0.2",
"jsdiff": "^1.1.1",
"lodash": "^4.17.4",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4"
}
}