-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.32 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.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
{
"name": "esseal-pair-programming",
"displayName": "Esseal: Pair Programming",
"description": "Real-time collaborative coding",
"version": "0.0.1",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:myliveshare.startSession",
"onCommand:myliveshare.joinSession"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "myliveshare.startSession",
"title": "Start Live Share Session"
},
{
"command": "myliveshare.joinSession",
"title": "Join Live Share Session"
}
],
"views": {
"explorer": [
{
"id": "myliveshare.participants",
"name": "Live Share Participants",
"when": "myliveshare.active"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"dependencies": {
"ws": "^8.13.0",
"uuid": "^9.0.0",
"yjs": "^13.5.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}