-
Notifications
You must be signed in to change notification settings - Fork 314
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.87 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.87 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
{
"name": "@srcbook/web",
"private": true,
"version": "0.0.9",
"type": "module",
"scripts": {
"dev": "vite",
"prebuild": "rm -rf ./dist",
"build": "tsc && vite build && cp -R ./dist/. ../../srcbook/public",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write .",
"preview": "vite preview",
"check-types": "tsc",
"generate-codeium-proto-json": "node --eval 'console.log(\"export default\", JSON.stringify(require(\"protobufjs\").loadSync(\"src/lib/ai-autocomplete/language_server.proto\").toJSON(), null, 2));' > src/lib/ai-autocomplete/languageServerProto.ts"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.1",
"@codemirror/lang-css": "^6.3.0",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.2.5",
"@codemirror/lint": "^6.8.1",
"@srcbook/components": "workspace:^",
"@srcbook/shared": "workspace:^",
"@uiw/codemirror-themes": "^4.23.2",
"@uiw/react-codemirror": "^4.23.2",
"clsx": "^2.1.1",
"codemirror": "^6.0.1",
"codemirror-copilot": "^0.0.7",
"long": "^5.2.3",
"lucide-react": "^0.439.0",
"marked": "catalog:",
"protobufjs": "^7.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-hotkeys-hook": "^4.5.1",
"react-router-dom": "^6.26.2",
"react-textarea-autosize": "^8.5.3",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^10.0.3",
"zod": "catalog:"
},
"devDependencies": {
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.45",
"tailwindcss": "^3.4.11",
"vite": "^5.4.4"
}
}