-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 886 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 886 Bytes
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
{
"name": "buyan",
"private": true,
"type": "module",
"scripts": {
"build:client": "esbuild public/app.tsx --bundle --format=esm --sourcemap --outfile=public/app.js --loader:.wasm=binary --jsx=automatic",
"build": "pnpm build:client",
"smoke": "tsx scripts/smoke.ts",
"start": "pnpm build:client && cargo run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@msgpack/msgpack": "^3.0.0",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/state": "^6.5.3",
"@codemirror/view": "^6.39.7",
"codemirror": "^6.0.2",
"loro-codemirror": "^0.3.3",
"loro-crdt": "^1.10.3",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"esbuild": "^0.25.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}