-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.57 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
{
"name": "vs-code-web",
"description": "A beautiful, responsive web-based code viewer built with React that mimics VS Code's interface",
"version": "1.0.0",
"private": false,
"type": "module",
"author": "CraftFossLabs",
"license": "MIT",
"keywords": [
"vscode",
"code-viewer",
"react",
"syntax-highlighting",
"file-explorer",
"web-editor",
"code-sharing"
],
"repository": {
"type": "git",
"url": "https://github.com/1sisodiyaji/vs-code-web"
},
"bugs": {
"url": "https://github.com/1sisodiyaji/vs-code-web/issues"
},
"homepage": "https://github.com/1sisodiyaji/vs-code-web#readme",
"scripts": {
"dev": "vite",
"build": "vite build",
"create-file-structure": "node src/scripts/updateFileStructure.js",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"update-files": "node scripts/updateFileStructure.js"
},
"dependencies": {
"@mdi/js": "^7.4.47",
"@mdi/react": "^1.6.1",
"@tailwindcss/vite": "^4.0.9",
"framer-motion": "^12.4.7",
"lucide-react": "^0.477.0",
"prismjs": "^1.29.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"styled-components": "^6.1.15",
"tailwindcss": "^4.0.9"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"vite": "^6.2.0"
}
}