-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.38 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.38 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
{
"name": "collab-code",
"displayName": "Collab Code",
"description": "Google Docs–style real-time collaboration on a single code file. See who's here and where they are.",
"version": "0.1.0",
"publisher": "collab-code",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished",
"onCommand:collabCode.startCollaboration",
"onCommand:collabCode.joinCollaboration",
"onCommand:collabCode.leaveCollaboration",
"onCommand:collabCode.copyShareLink"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "collabCode.startCollaboration",
"title": "Collab Code: Start collaboration"
},
{
"command": "collabCode.joinCollaboration",
"title": "Collab Code: Join with code"
},
{
"command": "collabCode.leaveCollaboration",
"title": "Collab Code: Leave collaboration"
},
{
"command": "collabCode.copyShareLink",
"title": "Collab Code: Copy share link"
}
],
"configuration": {
"title": "Collab Code",
"properties": {
"collabCode.liveblocksPublicKey": {
"type": "string",
"default": "",
"description": "Liveblocks public API key (from dashboard.liveblocks.io)"
},
"collabCode.displayName": {
"type": "string",
"default": "",
"description": "Display name shown to other collaborators"
},
"collabCode.cursorColor": {
"type": "string",
"default": "",
"description": "Hex color for your cursor in others' editors (e.g. #FF5733). Leave empty for auto."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "node build.mjs",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts",
"package": "npx @vscode/vsce package"
},
"repository": {
"type": "git",
"url": ""
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.x",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"esbuild": "^0.24.2",
"eslint": "^8.56.0",
"typescript": "^5.3.0"
},
"dependencies": {
"@liveblocks/client": "^3.0.0",
"@liveblocks/yjs": "^3.0.0",
"ws": "^8.18.0",
"yjs": "^13.6.0"
}
}