-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.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
{
"private": true,
"name": "vslite",
"version": "1.2.0",
"description": "More than Monaco, less than VSCode.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"repository": {
"type": "git",
"url": "https://github.com/kat-tax/vslite.git"
},
"dependencies": {
"@monaco-editor/react": "^4.5.1",
"@webcontainer/api": "^1.1.5",
"dockview": "^1.7.6",
"monaco-editor": "^0.39.0",
"monaco-editor-auto-typings": "^0.4.4",
"react": "^18.2.0",
"react-complex-tree": "^2.1.4",
"react-dom": "^18.2.0",
"xterm": "^5.1.0",
"xterm-addon-fit": "^0.7.0",
"y-monaco": "^0.1.4",
"y-webrtc": "^10.2.5",
"yjs": "^13.6.2"
},
"devDependencies": {
"@types/node": "^20.3.0",
"@types/react": "^18.2.11",
"@types/react-dom": "^18.2.4",
"@vitejs/plugin-react": "^4.0.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-node-polyfills": "^0.9.0",
"vite-plugin-rewrite-all": "^1.0.1"
},
"prettier": {
"semi": true,
"singleQuote": true,
"bracketSpacing": false,
"trailingComma": "all",
"arrowParens": "avoid",
"printWidth": 200
}
}