This commit is contained in:
2026-05-24 15:32:36 +00:00
commit 1eb5350d09
20 changed files with 2852 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{
"name": "excali",
"type": "module",
"private": true,
"scripts": {
"dev": "bun --hot src/server.tsx",
"build": "rm -rf dist && bun build --target=bun ./src/server.tsx --outdir ./dist",
"start": "cd dist && DATABASE_PATH=../data/excalidraw.sqlite bun ./server.js",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@excalidraw/excalidraw": "^0.18.1",
"react": "^19.2.6",
"react-dom": "^19.2.6"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"typescript": "^5.9.3"
}
}