-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.56 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.56 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
{
"name": "sqlit",
"private": true,
"version": "3.0.2",
"scripts": {
"setup:pyodide": "node scripts/fetch-pyodide.mjs",
"dev": "next dev",
"prebuild": "node scripts/fetch-pyodide.mjs",
"build": "next build",
"prebuild:standalone": "node scripts/fetch-pyodide.mjs",
"build:standalone": "NEXT_OUTPUT=standalone next build && cp -r public/. .next/standalone/public && cp -r .next/static/. .next/standalone/.next/static",
"serve": "node .next/standalone/server.js",
"start": "next start",
"lint": "biome lint",
"format": "biome format --write",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/view": "^6.40.0",
"@sqliteai/sqlite-wasm": "3.50.4-sync.0.8.68-vector.0.9.93-memory.0.7.2",
"@uiw/react-codemirror": "^4.25.8",
"client-only": "^0.0.1",
"comlink": "^4.4.2",
"next": "^16.2.4",
"pyodide": "^0.29.3",
"react": "^19.2.4",
"react-device-detect": "^2.2.3",
"react-dom": "^19.2.4",
"react-icons": "^5.6.0",
"react-markdown": "^10.1.0",
"react-use": "^17.6.0",
"remark-gfm": "^4.0.1",
"server-only": "^0.0.1",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"babel-plugin-react-compiler": "^1.0.0",
"raw-loader": "^4.0.2",
"typescript": "~5.9.3"
}
}