forked from ekzhang/rustpad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 891 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 891 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
32
33
34
{
"name": "rustpad",
"type": "module",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "bun run server.ts",
"check": "tsc",
"build": "bun run bundle.ts",
"format": "prettier --write ."
},
"dependencies": {
"@chakra-ui/react": "^3.33.0",
"@emotion/react": "^11.14.0",
"@monaco-editor/react": "^4.7.0",
"lodash.debounce": "^4.0.8",
"next-themes": "^0.4.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.5.0",
"rustpad-wasm": "file:./rustpad-wasm/pkg",
"use-local-storage-state": "^19.5.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/bun": "latest",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"monaco-editor": "^0.55.1",
"prettier": "3.8.1",
"typescript": "~5.9.3"
}
}