forked from vizhub-core/vzcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.32 KB
/
package.json
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "vzcode",
"version": "0.49.0",
"description": "Multiplayer code editor system",
"main": "src/index.ts",
"type": "module",
"bin": "src/server/index.js",
"files": [
"dist/**",
"src/**"
],
"scripts": {
"test": "vitest run",
"test-interactive": "npm run build; cd test/sampleDirectories/kitchenSink; node ../../../src/server/index.js",
"prettier": "prettier {*.*,**/*.*} --write",
"tsc": "tsc --noEmit",
"dev": "vite",
"build": "vite build",
"build-release": "vite build --mode release",
"preview": "vite preview",
"prepublishOnly": "npm run build-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vizhub-core/vzcode.git"
},
"keywords": [
"Code",
"Editor",
"CodeMirror",
"Collaboration",
"Development",
"IDE",
"JavaScript",
"Data",
"Visualization"
],
"contributors": [
{
"name": "Curran Kelleher",
"url": "https://github.com/curran"
},
{
"name": "Anooj Pai",
"url": "https://github.com/Anooj-Pai"
},
{
"name": "Jack Hankin",
"url": "https://github.com/Darmin-Geek"
},
{
"name": "Amanda Ruan",
"url": "https://github.com/aruan20"
},
{
"name": "Evan Whymark",
"url": "https://github.com/EvWhymark"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/vizhub-core/vzcode/issues"
},
"homepage": "https://github.com/vizhub-core/vzcode#readme",
"dependencies": {
"@codemirror/autocomplete": "^6.11.1",
"@codemirror/lang-css": "^6.2.1",
"@codemirror/lang-html": "^6.4.7",
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.2.3",
"@codemirror/state": "^6.4.0",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.23.0",
"@lezer/highlight": "^1.2.0",
"@replit/codemirror-indentation-markers": "^6.5.0",
"@replit/codemirror-interact": "^6.3.0",
"@replit/codemirror-vscode-keymap": "^6.0.2",
"@teamwork/websocket-json-stream": "^2.0.0",
"@typescript/vfs": "^1.5.0",
"@uiw/codemirror-theme-abcdef": "^4.21.21",
"@uiw/codemirror-theme-dracula": "^4.21.21",
"@uiw/codemirror-theme-eclipse": "^4.21.21",
"@uiw/codemirror-theme-github": "^4.21.21",
"@uiw/codemirror-theme-material": "^4.21.21",
"@uiw/codemirror-theme-nord": "^4.21.21",
"@uiw/codemirror-theme-okaidia": "^4.21.21",
"@uiw/codemirror-theme-xcode": "^4.21.21",
"@uiw/codemirror-themes": "^4.21.21",
"body-parser": "^1.20.2",
"codemirror": "^6.0.1",
"codemirror-ot": "^4.2.0",
"color-hash": "^2.0.2",
"d3-array": "^3.2.4",
"diff-match-patch": "^1.0.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"ignore": "^5.3.0",
"json0-ot-diff": "^1.1.2",
"ngrok": "^4.3.3",
"open": "^10.0.2",
"openai": "^4.24.1",
"react": "^18.2.0",
"react-bootstrap": "^2.9.2",
"react-dom": "^18.2.0",
"sharedb": "^4.1.2",
"sharedb-client-browser": "^4.4.0",
"vizhub-ui": "^3.15.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"prettier": "^3.1.1",
"sass": "^1.69.6",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vitest": "^1.1.0"
}
}